mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-18 10:00:14 +01:00
additional test runs with all features
This commit is contained in:
parent
ff713690e3
commit
7200cb3247
14
.github/workflows/rust.yml
vendored
14
.github/workflows/rust.yml
vendored
|
@ -16,9 +16,17 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Build crates
|
||||
|
||||
- name: build default features
|
||||
run: cargo build --all --verbose
|
||||
- name: Build
|
||||
- name: build default features -- examples
|
||||
run: cargo build --examples --verbose
|
||||
- name: Run tests
|
||||
- name: test default features
|
||||
run: cargo test --all --verbose
|
||||
|
||||
- name: build all features
|
||||
run: cargo build --all-features --verbose
|
||||
- name: build all features -- examples
|
||||
run: cargo build --all-features --examples --verbose
|
||||
- name: test all features
|
||||
run: cargo test --all --all-features --verbose
|
||||
|
|
Loading…
Reference in a new issue