chore(deps): bump codecov/codecov-action from 5.4.3 to 5.5.0 (#186) #260
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| merge_group: | |
| types: [checks_requested] | |
| pull_request: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| read_msrv: | |
| name: Read MSRV | |
| uses: actions-rust-lang/msrv/.github/workflows/[email protected] | |
| test: | |
| needs: read_msrv | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| toolchain: | |
| - { name: msrv, version: '${{ needs.read_msrv.outputs.msrv }}' } | |
| - { name: stable, version: stable } | |
| name: Test / ${{ matrix.toolchain.name }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Determinate Nix | |
| uses: DeterminateSystems/determinate-nix-action@v3 | |
| with: | |
| extra-conf: lazy-trees = true | |
| - name: Set up FlakeHub Cache | |
| uses: DeterminateSystems/flakehub-cache-action@v2 | |
| - name: Install Rust (${{ matrix.toolchain.name }}) | |
| uses: actions-rust-lang/[email protected] | |
| with: | |
| toolchain: ${{ matrix.toolchain.version }} | |
| - name: Enter Nix Devshell | |
| uses: nicknovitski/[email protected] | |
| - name: Workaround MSRV issues | |
| if: matrix.toolchain.name == 'msrv' | |
| run: just downgrade-for-msrv | |
| - name: Test | |
| run: just test |