Skip to content

Remove support for boundary from includes, add new tag and add suppor… #25

Remove support for boundary from includes, add new tag and add suppor…

Remove support for boundary from includes, add new tag and add suppor… #25

Workflow file for this run

name: Checks
on:
push:
workflow_dispatch:
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.10"
- "3.11"
- "3.12"
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install the package
run: uv sync --all-extras --dev
- name: Run pytest
run: uv run pytest
ruff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/ruff-action@v1
mypy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
enable-cache: true
- name: Set up Python
uses: actions/setup-python@v5
- name: Install the package
run: uv sync --all-extras --dev
- name: Run mypy
run: uv run mypy src/dj_angles