Skip to content

Commit

Permalink
Installing Rust toolchain as part of CI run to ensure fmt is available.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmartin82 committed Nov 4, 2024
1 parent abe72e4 commit dd91e64
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
- name: Install ACL
if: startsWith(matrix.os,'ubuntu')
run: sudo apt-get -y install acl-dev
- name: Install Rust toolchain
run: |
rustup show
rustup component add rustfmt clippy
- name: Code format check
uses: actions-rs/cargo@v1
with:
Expand Down

0 comments on commit dd91e64

Please sign in to comment.