Skip to content

Update dockerfile

Update dockerfile #179

Workflow file for this run

name: Tests
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
# As of this writing, multidict isn't 3.13 compatible yet
python-version: [ "3.12" ]
steps:
- uses: actions/checkout@v4
- uses: eifinger/setup-uv@v1
with:
enable-cache: true
cache-suffix: "python${{ matrix.python-version }}"
- name: Install dependencies
run: uv sync -p ${{ matrix.python-version }}
- name: Check formatting
run: uv run ruff format . --check
- name: Run ruff
run: uv run ruff check .
- name: Run pytest
run: uv run pytest