Skip to content

More python versions #3

More python versions

More python versions #3

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.12, 3.11, 3.10, 3.9, 3.8, 3.7 ]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Run tests
run: make test