chore: Update pdm.lock #92
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: Python Package | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
merge_group: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: | |
- "3.12" | |
# - "3.13-dev" | |
steps: | |
- name: Checkout Repo | |
uses: actions/[email protected] | |
- name: Set up PDM | |
id: set-up-pdm | |
uses: pdm-project/[email protected] | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: pdm sync --dev | |
- name: Check format (ruff) | |
run: pdm run ruff format --check . | |
- name: Lint (ruff) | |
run: pdm run ruff check --output-format=github . | |
- name: Check types (mypy) | |
run: pdm run mypy . | |
- name: Run tests | |
run: pdm run pytest --cov=. --cov-report=xml | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |