Dot path notion #212
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| pixi-ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup pixi | |
| uses: prefix-dev/setup-pixi@v0.8.10 | |
| with: | |
| auth-host: prefix.dev | |
| auth-token: ${{ secrets.PREFIXDEV_AUTH_TOKEN }} | |
| - name: Run checks | |
| run: pixi run check | |
| - name: Run test & coverage | |
| run: pixi run coverage-ci | |
| - name: Upload coverage reports | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| slug: s2gos-dev/s2gos-controller | |
| # Add other pixi tasks here | |