Skip to content

build(deps): Bump taiki-e/install-action from 2.44.1 to 2.44.7 #119

build(deps): Bump taiki-e/install-action from 2.44.1 to 2.44.7

build(deps): Bump taiki-e/install-action from 2.44.1 to 2.44.7 #119

Workflow file for this run

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:
msrv:
name: MSRV Verify
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (MSRV)
uses: actions-rust-lang/[email protected]
with:
toolchain: "1.56"
- name: Install cargo-hack
uses: taiki-e/[email protected]
with:
tool: cargo-hack
- name: Generate MSRV lockfile
run: cargo hack --remove-dev-deps generate-lockfile
- name: Check
run: cargo check --workspace --all-features
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust (stable)
uses: actions-rust-lang/[email protected]
- name: Test
run: cargo test --workspace --all-features