Merge pull request #177 from aceat64/docs-sitemap #139
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: pytest | |
on: | |
# Trigger the workflow on push or pull request, | |
# but only for the master branch | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
run: | |
name: Run unit tests with codecov upload | |
runs-on: ${{ matrix.os }} | |
env: | |
USING_COVERAGE: '3.10' | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@master | |
- name: Install uv and set the python version | |
uses: astral-sh/setup-uv@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Generate coverage report | |
run: | | |
git config --global user.name "Github Action" | |
git config --global user.email "[email protected]" | |
uv run pytest --cov=mkdocs_git_revision_date_localized_plugin --cov-report=xml | |
- name: Upload coverage to Codecov | |
if: "contains(env.USING_COVERAGE, matrix.python-version)" | |
uses: codecov/codecov-action@v4 | |
with: | |
files: ./coverage.xml | |
flags: unittests | |
fail_ci_if_error: false | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |