Skip to content

Migrate to uv/pyproject.toml #407

Migrate to uv/pyproject.toml

Migrate to uv/pyproject.toml #407

Workflow file for this run

name: pull_request
on:
pull_request:
branches:
- master
jobs:
validate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install uv
run: pipx install uv
- uses: actions/cache@v4
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/uv.lock') }}
- name: Dependencies
run: make dependencies
- name: Build
run: make build
- name: Lint check (ruff)
run: make check-lint
- name: Type check (mypy)
run: make check-type
- name: Test
run: make test