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 874f990 commit ccc3768Copy full SHA for ccc3768
.github/workflows/rust.yml
@@ -40,15 +40,19 @@ jobs:
40
strategy:
41
matrix:
42
os: [ ubuntu-latest, macos-latest, windows-latest ]
43
+ features:
44
+ - '--all-features'
45
+ # - '--no-default-features'
46
+ # - ''
47
steps:
48
- uses: actions/checkout@v4
49
- name: Build
50
run: cargo build --verbose
51
- uses: taiki-e/install-action@nextest
52
- name: Run tests
- run: cargo nextest run --verbose --all-features
53
+ run: cargo nextest run --verbose ${{ matrix.features }}
54
- name: Run doctests
- run: cargo test --doc --verbose --all-features
55
+ run: cargo test --doc --verbose ${{ matrix.features }}
56
57
codecov:
58
needs: lint
0 commit comments