fix injecting with param overriding cases (#16) #132
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: make lint-ci | |
mypy: | |
needs: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: "3.8" | |
- 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 dependencies | |
run: pdm install -G:all | |
- name: Execute mypy | |
run: make mypy | |
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 }} |