Skip to content

Update Python versions and GitHub actions in CI #23

Update Python versions and GitHub actions in CI

Update Python versions and GitHub actions in CI #23

Workflow file for this run

name: Python
on: push
jobs:
check:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: pip install --requirement requirements.txt
- name: Check lint and test
run: make check
- name: Check publish
run: make publish