We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d90cec commit aac4a67Copy full SHA for aac4a67
.github/workflows/rust.yml
@@ -10,21 +10,13 @@ env:
10
CARGO_TERM_COLOR: always
11
12
jobs:
13
- default_features:
+ build:
14
+
15
runs-on: ubuntu-latest
16
17
steps:
18
- uses: actions/checkout@v2
-
19
- - name: Install rust toolchain
20
- uses: actions-rs/toolchain@v1
21
- with:
22
- profile: minimal
23
- toolchain: stable
24
- override: true
25
+ - name: Build
+ run: cargo build --verbose
26
- name: Run tests
27
- run: cargo test
28
29
- - name: Run test-project tests
30
- run: cd test-project && cargo test
+ run: cargo test --verbose
0 commit comments