Skip to content

Commit aac4a67

Browse files
committed
Try running GitHub provided Rust template?
1 parent 1d90cec commit aac4a67

File tree

1 file changed

+5
-13
lines changed

1 file changed

+5
-13
lines changed

.github/workflows/rust.yml

+5-13
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,13 @@ env:
1010
CARGO_TERM_COLOR: always
1111

1212
jobs:
13-
default_features:
13+
build:
14+
1415
runs-on: ubuntu-latest
1516

1617
steps:
1718
- uses: actions/checkout@v2
18-
19-
- name: Install rust toolchain
20-
uses: actions-rs/toolchain@v1
21-
with:
22-
profile: minimal
23-
toolchain: stable
24-
override: true
25-
19+
- name: Build
20+
run: cargo build --verbose
2621
- name: Run tests
27-
run: cargo test
28-
29-
- name: Run test-project tests
30-
run: cd test-project && cargo test
22+
run: cargo test --verbose

0 commit comments

Comments
 (0)