Bump prefix-dev/setup-pixi from 0.9.4 to 0.9.5 (#405) #141
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: Codecov | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - compass/** | |
| - tests/** | |
| - .github/workflows/codecov.yml | |
| - pyproject.toml | |
| - pixi.lock | |
| pull_request: | |
| paths: | |
| - compass/** | |
| - tests/** | |
| - .github/workflows/codecov.yml | |
| - pyproject.toml | |
| - pixi.lock | |
| workflow_dispatch: | |
| jobs: | |
| run: | |
| name: Codecov | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| with: | |
| fetch-depth: 0 | |
| fetch-tags: true | |
| - uses: prefix-dev/[email protected] | |
| with: | |
| pixi-version: v0.62.2 | |
| locked: true | |
| cache: true | |
| cache-write: false | |
| environments: pdev | |
| - name: Generate coverage report | |
| run: | | |
| pixi reinstall -e pdev --locked INFRA-COMPASS | |
| pixi run -e pdev --locked tests-p | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v6 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: ./coverage.xml | |
| flags: unittests | |
| env_vars: OS,PYTHON | |
| name: codecov-umbrella | |
| fail_ci_if_error: false | |
| verbose: true |