Skip to content

chore(deps): bump taiki-e/install-action from 2.61.5 to 2.62.1 #82

chore(deps): bump taiki-e/install-action from 2.61.5 to 2.62.1

chore(deps): bump taiki-e/install-action from 2.61.5 to 2.62.1 #82

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
merge_group:
types: [checks_requested]
push:
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/msrv.yml@main
test:
needs: read_msrv
strategy:
fail-fast: false
matrix:
toolchain:
- { name: msrv, version: "${{ needs.read_msrv.outputs.msrv }}" }
- { name: stable, version: stable }
runs-on: ubuntu-latest
name: Test / ${{ matrix.toolchain.name }}
steps:
- uses: actions/checkout@v5
- 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: Install cargo-nextest
uses: taiki-e/[email protected]
with:
tool: cargo-nextest
- name: Enter Nix devshell
uses: nicknovitski/[email protected]
- name: Downgrade for MSRV
if: matrix.toolchain.name == 'msrv'
run: |
rm -f Cargo.lock
just downgrade-for-msrv
- name: Test
run: just test-no-coverage