Skip to content

Fix ci python versions #54

Fix ci python versions

Fix ci python versions #54

Workflow file for this run

name: Lint
on: [push]
jobs:
lint:
strategy:
fail-fast: false
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: make tools
- name: Run lint
run: make lint
- name: Run test
run: make test
- name: Run building docs
run: make build-docs