Fix devpod SSH tunneling and VS Code IDE launch issues #378
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" ] | |
| permissions: | |
| contents: read | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| environment: [py310, py311, py312, py313] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - uses: prefix-dev/setup-pixi@v0.9.3 | |
| with: | |
| cache: true | |
| frozen: true | |
| environments: ${{ matrix.environment }} | |
| - name: CI | |
| run: | | |
| pixi run -e ${{ matrix.environment }} ci | |
| - name: Upload coverage reports to Codecov | |
| uses: codecov/codecov-action@v5 | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |