Reduce backward-compatibility blast radius of the TestNode changes #936
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: Pixi (conda) | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| pixi_conda_build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: | |
| # Pinned to windows-2022: windows-latest now ships Visual Studio 2026, | |
| # but cmake defaults to the "Visual Studio 17 2022" generator, which is | |
| # no longer present ("could not find any instance of Visual Studio"). | |
| - windows-2022 | |
| - ubuntu-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| # Pixi is the tool used to create/manage conda environment | |
| - uses: actions/checkout@v7 | |
| - uses: prefix-dev/setup-pixi@v0.10.0 | |
| with: | |
| pixi-version: v0.40.3 | |
| - name: Build | |
| run: pixi run build | |
| - name: Run tests | |
| run: pixi run test |