Update rust.yml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index b066c00..d213ac9 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -11,25 +11,28 @@ env:
jobs:
build:
-
runs-on: ubuntu-latest
-
steps:
- uses: actions/checkout@v2
- name: Build
- run: cargo build --verbose --all-features
+ run: cargo build --all-features
- - name: Install stable toolchain
- uses: actions-rs/toolchain@v1
- with:
- toolchain: stable
- override: true
+ test:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Test
+ run: cargo test --all-features
+ coverage:
+ runs-on: ubuntu-latest
+ steps:
- name: Run cargo-tarpaulin
- uses: actions-rs/tarpaulin@v0.1
+ - uses: actions/checkout@v2
+ - uses: actions-rs/tarpaulin@v0.1
with:
version: '0.19.0'
- args: --all-features --verbose --out=Xml
+ args: --all-features --out=Xml
- name: Upload to codecov.io
uses: codecov/codecov-action@v2