Fix wrong OR to AND in BUILD_TESTING and PROJECT_IS_TOP_LEVEL logic #13
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-2019 | |
| ] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up pixi | |
| uses: prefix-dev/setup-pixi@v0.8.1 | |
| - name: Build and test the project | |
| run: pixi run test |