Skip to content

Commit

Permalink
Bump actions/checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
mciantyre committed Oct 18, 2024
1 parent 8d164cc commit 81156e7
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ jobs:
format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: rustup toolchain install stable --no-self-update --profile minimal
- name: Check formatting
run: cargo fmt --verbose --all --check

clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Install a stable toolchain with clippy
run: rustup toolchain install stable --no-self-update --profile minimal --component clippy
- name: Lint the host API
Expand All @@ -27,7 +27,7 @@ jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: rustup toolchain install stable --no-self-update --profile minimal --target thumbv7em-none-eabihf
- name: Run doc tests
run: cargo test --doc
Expand All @@ -46,7 +46,7 @@ jobs:
matrix:
board: [ teensy4, imxrt1010evk, imxrt1170evk-cm7 ]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: rustup toolchain install stable --no-self-update --profile minimal --target thumbv7em-none-eabihf --component clippy
- name: Lint the RTIC example for ${{ matrix.board }}
run: cargo clippy --example=blink-rtic --target=thumbv7em-none-eabihf --features=board/${{ matrix.board }},board/rtic -- -D warnings
Expand All @@ -58,7 +58,7 @@ jobs:
env:
RUSTDOCFLAGS: -D warnings
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: rustup toolchain install stable --no-self-update --profile minimal
- name: Check host documentation
run: cargo rustdoc --package=imxrt-rt

0 comments on commit 81156e7

Please sign in to comment.