fix outdated copy/paste names in test_l1 (#203) #611
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Checks | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '.devcontainer/**' | |
- '.vscode/**' | |
- '.gitignore' | |
- 'README.md' | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- '.devcontainer/**' | |
- '.vscode/**' | |
- '.gitignore' | |
- 'README.md' | |
# Allow this workflow to be called from other workflows | |
workflow_call: | |
inputs: | |
# Requires at least one input to be valid, but in practice we don't need any | |
dummy: | |
type: string | |
required: false | |
jobs: | |
checs: | |
name: Checks | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.10" | |
- "3.11" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'poetry' | |
allow-prereleases: true | |
- name: Check lockfile | |
run: poetry check | |
- name: Install dependencies | |
run: poetry install --with dev | |
- name: Pyright type check | |
run: poetry run pyright | |
- name: Ruff lint | |
run: poetry run ruff check . --output-format=github | |
- name: Docstrings lint | |
run: poetry run pydoclint . | |
- name: Ruff format | |
run: poetry run ruff format . --check | |
- name: Pytest | |
run: poetry run pytest | |
- name: Build check | |
run: poetry build |