Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,27 @@ on:
branches: [ "main" ]

jobs:
python-quality-checks:
name: Python quality checks
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry==1.8.2
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install dependencies
run: poetry install
- name: Lint
run: poetry run ruff check .
- name: Check formatting
run: poetry run ruff format --check .
- name: Type checking
run: poetry run mypy infrastructure
rust-quality-checks:
name: Rust quality checks
runs-on: ubuntu-latest
Expand Down
Loading