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 4ecf6ee commit e7268e1Copy full SHA for e7268e1
.github/workflows/ci.yml
@@ -109,7 +109,19 @@ jobs:
109
with:
110
toolchain: ${{ format('{0}-{1}', matrix.channel, matrix.target.toolchain) }}
111
112
+ - name: Install nextest
113
+ uses: taiki-e/install-action@44c6d64aa62cd779e873306675c7a58e86d6d532
114
+ with:
115
+ tool: nextest
116
+
117
- uses: Swatinem/rust-cache@f13886b937689c021905a6b90929199931d60db1
118
119
- name: Test
- run: cargo test --all-features
120
+ run: cargo nextest run --profile ci --all-features
121
122
+ - name: Upload test results to Codecov
123
+ if: ${{ !cancelled() }}
124
+ uses: codecov/test-results-action@47f89e9acb64b76debcd5ea40642d25a4adced9f
125
126
+ files: ./target/nextest/ci/junit.xml
127
+ token: ${{ secrets.CODECOV_TOKEN }}
0 commit comments