chore: update taiki-e/install-action action to v2.47.32 #299
This file contains 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: Lint and test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
name: Rustfmt, Clippy, Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: awalsh128/cache-apt-pkgs-action@a6c3917cc929dd0345bfb2d3feaf9101823370ad # v1.4.2 | |
with: | |
packages: fuse3 libfuse3-dev | |
- uses: actions-rust-lang/setup-rust-toolchain@1fbea72663f6d4c03efaab13560c8a24cfd2a7cc # v1.9.0 | |
- uses: Swatinem/rust-cache@23bce251a8cd2ffc3c1075eaa2367cf899916d84 # v2.7.3 | |
- uses: taiki-e/install-action@fe065954f63bce19eff44d8f90e0cf0286f22ac3 # v2.47.17 | |
with: | |
tool: nextest | |
- name: Rustfmt | |
run: cargo fmt --check | |
- name: Clippy | |
run: cargo clippy | |
- name: Test | |
run: cargo nextest run -j 1 |