SetTimeout accepts non-constant reference #21
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: Run tests with pixi | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| pixi-test: | |
| name: '[pixi:${{ matrix.os }}]' | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ | |
| ubuntu-22.04, | |
| ubuntu-24.04-arm, | |
| macos-latest, | |
| windows-latest | |
| ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up pixi | |
| uses: prefix-dev/setup-pixi@v0.8.14 | |
| - name: Build and test the project | |
| run: pixi run test |