Skip to content

Refactor: static annotations #3

Refactor: static annotations

Refactor: static annotations #3

name: Lint and Test
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
run-linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: chartboost/ruff-action@v1
run-tests:
runs-on: ubuntu-latest
strategy:
matrix:
fail-fast: false

Check failure on line 22 in .github/workflows/linters-and-test.yml

View workflow run for this annotation

GitHub Actions / Lint and Test

Invalid workflow file

The workflow is not valid. .github/workflows/linters-and-test.yml (Line: 22, Col: 20): Unexpected value 'false'
python-version: [3.8, 3.9, "3.10", 3.11, 3.12]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Hatch
run: pipx install hatch
- name: Run tests
run: hatch test