additional test runs with all features

This commit is contained in:
Vinzenz Schroeter 2024-06-23 09:56:14 +02:00
parent ff713690e3
commit 7200cb3247

View file

@ -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