Skip to content

Feat/initial dev

Feat/initial dev #51

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- name: Checkout project
uses: actions/checkout@v3
- uses: ./.github/setup
with:
python-version: ${{ matrix.python-version }}
- name: Lint - ruff
if: always()
run: poetry run poe ruff
- name: Lint - black
if: always()
run: poetry run poe black --check
- name: Lint - mypy
if: always()
run: poetry run poe mypy
- name: Lint - pyright
if: always()
run: poetry run poe pyright