Merge pull request #5 from NOAA-ORR-ERD/dependabot/github_actions/dep… #31
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: test | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["ubuntu-latest", "windows-latest", "macos-latest"] | |
| environment: [py310, py311, py312, py313] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: prefix-dev/[email protected] | |
| with: | |
| # pixi-version: v0.22.0 don't want to hard code this! | |
| cache: true | |
| # auth-host: prefix.dev | |
| # auth-token: ${{ secrets.PREFIX_DEV_TOKEN }} | |
| - run: pixi run -e ${{ matrix.environment }} test | |