Skip to content

chore(deps): bump taiki-e/install-action from 2.33.9 to 2.33.17 #108

chore(deps): bump taiki-e/install-action from 2.33.9 to 2.33.17

chore(deps): bump taiki-e/install-action from 2.33.9 to 2.33.17 #108

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:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
- { name: msrv, version: "1.72" }
- { name: stable, version: stable }
name: Test / ${{ matrix.toolchain.name }}
steps:
- uses: actions/checkout@v4
- name: Install Rust (${{ matrix.toolchain.name }})
uses: actions-rust-lang/setup-rust-toolchain@v1.5.0
with:
toolchain: ${{ matrix.toolchain.version }}
- name: Test (lib only)
if: matrix.toolchain.name == 'msrv'
run: cargo test --all-features --lib --tests
- name: Test (everything)
if: matrix.toolchain.name != 'msrv'
run: cargo test --all-features