Skip to content

Commit 96f747e

Browse files
authored
Add Rust toolchain installation step to CI
Added a step to install the Rust toolchain in CI workflow.
1 parent ac4d629 commit 96f747e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v4
19+
- name: Install Rust Toolchain
20+
uses: actions-rs/toolchain@v1 # Or actions-rust-lang/setup-rust-toolchain@v1
21+
with:
22+
toolchain: stable # Use 'stable' to get the latest stable Rust
23+
profile: minimal
24+
override: true
25+
1926
- name: Build
2027
run: cargo build --verbose
2128
- name: Run tests

0 commit comments

Comments
 (0)