Skip to content

WIP: Fix CI

WIP: Fix CI #73

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 }}
cache: 'poetry'
- name: Install poetry
run: |
pip install poetry
poetry install
- name: Run lint
run: make lint
- name: Run test
run: make test