Skip to content

Commit

Permalink
fix rust installation error
Browse files Browse the repository at this point in the history
  • Loading branch information
frankPairs committed Nov 2, 2024
1 parent b7b00e2 commit d3464c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Rust
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -y | sh

- name: Run rust linter
run: cargo clippy -- -D warnings
Expand All @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Rust
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -y | sh

- name: Run formatter check
run: cargo fmt --all -- --check
Expand Down

0 comments on commit d3464c0

Please sign in to comment.