version up, switch to uv, more airac functions fix #116 #359
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
pull_request_target: | |
workflow_dispatch: | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest # ${{ matrix.os }} | |
strategy: | |
matrix: | |
# os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
- "3.13" | |
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 project | |
run: uv sync --all-extras --dev | |
- name: Style checking | |
if: ${{ matrix.python-version == '3.10' }} | |
run: | | |
uv run ruff check src tests | |
uv run ruff format --check src tests | |
- name: Type checking | |
if: ${{ matrix.python-version == '3.10' }} | |
run: | | |
uv run mypy src tests | |
- name: Run tests | |
run: | | |
uv run pytest --cov --cov-report xml | |
- name: Upload coverage to Codecov | |
if: ${{ github.event_name != 'pull_request_target' && matrix.python-version == '3.10' }} | |
uses: codecov/codecov-action@v4 | |
with: | |
env_vars: PYTHON_VERSION |