Skip to content

Update Dockerfile

Update Dockerfile #10

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@v2
- name: Run lint and type checks
run: |
docker compose run --rm app sh -c "mypy . && ruff check . && ruff format"
- name: Run tests
run: |
docker compose run --rm app pytest