Skip to content

Commit

Permalink
[ci] Use specific rustup toolchain
Browse files Browse the repository at this point in the history
Prevent surprise warnings from happening again in the future.
  • Loading branch information
paw-hub authored and charlag committed Dec 5, 2024
1 parent 1ce6036 commit 72191b5
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/rust-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ jobs:

steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 #v4.1.1
- name: setup rust
run: |
# Specify an exact Rust version.
#
# Newer versions will enable newer features, but at the same time, you may get newer warnings which you have
# to fix. This should be a manual step.
rustup install 1.83.0
rustup default 1.83.0
rustup component add rustfmt clippy
- name: sdk format
working-directory: tuta-sdk/rust
run: cargo fmt --check
Expand Down

0 comments on commit 72191b5

Please sign in to comment.