fix publish workflow #164
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 And Linting | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*' | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install pre-commit | |
run: python -m pip install pre-commit | |
- name: Execute Pre-Commit | |
run: pre-commit install && pre-commit run --color=always --all-files | |
mypy: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.8" | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
enable-cache: true | |
cache-dependency-glob: "uv.lock" | |
- name: Install dependencies | |
run: uv sync --frozen --all-extras --no-install-project | |
- name: Execute mypy | |
run: uv run mypy src tests | |
test: | |
needs: mypy | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# - uses: pdm-project/setup-pdm@v4 | |
# name: Set up PDM | |
# with: | |
# python-version: ${{ matrix.python-version }} | |
# allow-python-prereleases: false | |
# prerelease: false | |
# cache: true | |
# cache-dependency-path: | | |
# ./pdm.lock | |
- name: Install Hatch | |
run: python -m pip install hatch==1.13.0 | |
- name: Test with coverage | |
run: make test-py v="${{ matrix.python-version }}" | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
file: ./coverage.xml | |
token: ${{ secrets.CODECOV_TOKEN }} |