Do not run doccmd against Python or toml files #3727
Workflow file for this run
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: Test | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
# Run at 1:00 every day | |
- cron: 0 1 * * * | |
jobs: | |
build: | |
strategy: | |
matrix: | |
python-version: ['3.12'] | |
platform: [ubuntu-latest, windows-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v3 | |
- name: Run tests | |
env: | |
# See https://pytest-cov.readthedocs.io/en/latest/plugins.html for why we | |
# set these variables, and use `--cov-append`. | |
# | |
# Without them, pytest plugin coverage is not counted correctly. | |
COV_CORE_CONFIG: .coveragerc | |
COV_CORE_SOURCE: src | |
COV_CORE_DATAFILE: .coverage.eager | |
UV_PYTHON: ${{ matrix.python-version }} | |
run: | | |
# We run tests against "." and not the tests directory as we test the README | |
# and documentation. | |
uv run --extra=dev pytest -s -vvv --cov-fail-under 100 --cov=src/ --cov=tests . --cov-report=xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |