Skip to content

Commit

Permalink
Update GitHub actions using old node version
Browse files Browse the repository at this point in the history
  • Loading branch information
msk committed Nov 14, 2024
1 parent bfd7625 commit 7f20ce5
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust
uses: hecrj/setup-rust-action@v1
uses: dtolnay/rust-toolchain@stable
with:
rust-version: stable
- uses: actions/checkout@v2
components: clippy, rustfmt
- name: Check formatting
run: cargo fmt -- --check --config group_imports=StdExternalCrate
- name: Clippy
Expand All @@ -26,10 +26,8 @@ jobs:
rust: [stable, 1.66.0]
steps:
- name: Install Rust
uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@v2
uses: dtolnay/rust-toolchain@${{ matrix.rust }}
- uses: actions/checkout@v4
- name: Install Tarpaulin
if: matrix.os == 'ubuntu-latest' && matrix.rust == 'stable'
run: cargo install cargo-tarpaulin --version 0.18.0-alpha3
Expand Down

0 comments on commit 7f20ce5

Please sign in to comment.