Skip to content

Add mypy type-checking badge (#43) #47

Add mypy type-checking badge (#43)

Add mypy type-checking badge (#43) #47

Workflow file for this run

name: tests
on: [push, pull_request]
jobs:
tests:
name: "Python 3.10"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up and update uv.
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
uv self update
- name: Install Python.
run: uv python install 3.10
- name: Create venv and install the package.
run: |
uv venv && source .venv/bin/activate
uv pip install ".[dev]"
- name: Run tests.
run: |
source .venv/bin/activate
make test