Skip to content

GH: testing more python versions #84

GH: testing more python versions

GH: testing more python versions #84

Workflow file for this run

name: 'Tests'
on:
push:
pull_request:
types: [opened, synchronize] #labeled, assigned]
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.11, 3.12]
steps:
# --- Install steps
- name: Checkout
uses: actions/checkout@v2
with:
submodules: recursive
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: System info
run: |
echo "Actor : $GITHUB_ACTOR"
echo "Branch: $GITHUB_REF"
pip list
ls
# --- Run Tests
- name: Tests
run: |
make test