We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5b4f44 commit bbc1ed3Copy full SHA for bbc1ed3
1 file changed
.github/workflows/rust.yml
@@ -11,12 +11,22 @@ env:
11
12
jobs:
13
build:
14
-
+ name: Rust project
15
runs-on: ubuntu-latest
16
17
steps:
18
- - uses: actions/checkout@v2
19
- - name: Build
20
- run: cargo +nightly build --verbose
21
- - name: Run tests
22
- run: cargo +nightly test --verbose
+ - uses: actions/checkout@v2
+ - name: Install latest nightly
+ uses: actions-rs/toolchain@v1
+ with:
+ toolchain: nightly
+ override: true
23
+ components: rustfmt, clippy
24
25
+ - name: Run cargo test
26
+ uses: actions-rs/cargo@v1
27
28
+ command: test
29
+ - name: Run cargo build
30
31
32
+ command: build
0 commit comments