Skip to content

Update formatting and typing #259

Update formatting and typing

Update formatting and typing #259

Workflow file for this run

name: Code Quality
on:
push:
branches:
- "**"
pull_request:
branches:
- main
jobs:
code-quality:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ./.github/actions/poetry
- name: Linting check with ruff
run: poetry run ruff check .
- name: Typehinting check with mypy
run: poetry run mypy src