ci.yml: Remove python 3.9 #61
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: libais CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
PIP_WHEEL_DIR: /home/runner/.cache/pip/wheels | |
PIP_FIND_LINKS: file:///home/runner/.cache/pip/wheels | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
python-version: [ | |
'3.10', | |
'3.11' | |
# '3.12' does not have assertDictContainsSubset. | |
] | |
steps: | |
- name: Add required sources and pkgs | |
run: | | |
sudo add-apt-repository --update --yes 'deb http://archive.ubuntu.com/ubuntu/ bionic main universe' | |
sudo apt-get install gcc g++ | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: 'x64' | |
- name: Before install | |
run: | | |
mkdir --parents --verbose ${{ env.PIP_WHEEL_DIR }} | |
pip install setuptools --upgrade | |
pip install pytest --upgrade | |
- name: Install | |
run: CC=g++ pip install .\[tests\] --upgrade | |
- name: Script | |
run: | | |
(cd src && CC=gcc CXX=g++ make -f Makefile-custom -j 4 test) | |
py.test ais test --cov=ais --cov-report term-missing |