Add Codecov workflow for coverage reporting #13
Workflow file for this run
This file contains hidden or 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: Build and Test | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| schedule: | |
| - cron: '0 23 * * Sun' | |
| jobs: | |
| test: | |
| name: Test and Check | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| python-version: ["3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.5.2 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v5.1.0 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install hatch | |
| run: | | |
| python -m pip install --upgrade pip | |
| python -m pip install hatch | |
| - name: Run test suite | |
| run: hatch run +py=${{ matrix.python-version }} test:run | |
| - name: Build package | |
| if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13' | |
| run: hatch build --clean | |
| - name: Check package metadata | |
| if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13' | |
| run: hatch run build:twine check dist/* | |
| - name: Upload to codecov | |
| if: runner.os == 'macOS' && matrix.python-version == '3.13' | |
| uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1 | |
| with: | |
| verbose: true | |
| files: ./coverage.xml |