Fix assertion failure when a package constrains itself #803
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
| on: | |
| push: | |
| branches: | |
| - "main" | |
| pull_request: | |
| name: C++ | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| format: | |
| name: Format and Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4 | |
| - uses: prefix-dev/setup-pixi@v0.10.1 | |
| with: | |
| environments: format-cpp | |
| - name: Ensure code is properly formatted | |
| run: | | |
| pixi run format-cpp | |
| git diff --exit-code | |
| test: | |
| name: Test | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-22.04, macOS-latest, macOS-14, windows-latest ] | |
| runs-on: ${{ matrix.os }} | |
| needs: [ format ] | |
| steps: | |
| - name: Checkout source code | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v4 | |
| - uses: prefix-dev/setup-pixi@v0.10.1 | |
| with: | |
| environments: test-cpp | |
| - name: Run the tests | |
| run: | | |
| pixi run test-cpp |