Skip to content

Enhance Justfile and pyproject.toml for improved formatting and documentation links #211

Enhance Justfile and pyproject.toml for improved formatting and documentation links

Enhance Justfile and pyproject.toml for improved formatting and documentation links #211

Workflow file for this run

name: Pull Request
on: pull_request
concurrency:
group: ${{ github.event.pull_request.number }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
test:
name: Pytest
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v3
- uses: astral-sh/setup-uv@v6
- name: Setup Docker Compose
uses: KengoTODA/actions-setup-docker-compose@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run pytest
run: just pytest
ruff:
name: Ruff and MyPy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: extractions/setup-just@v3
- uses: astral-sh/setup-uv@v6
- name: Run ruff checks
run: just check
- name: Run mypy checks
run: just mypy