Skip to content

Merge remote-tracking branch 'origin/main' #8

Merge remote-tracking branch 'origin/main'

Merge remote-tracking branch 'origin/main' #8

Workflow file for this run

name: Docker CI
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run lint and type checks
run: |
docker compose run --rm app sh -c "mypy . && ruff check --fix . && ruff format"
- name: Run tests
run: |
docker compose run --rm app pytest