File tree Expand file tree Collapse file tree 1 file changed +18
-1
lines changed
Expand file tree Collapse file tree 1 file changed +18
-1
lines changed Original file line number Diff line number Diff line change 33 push :
44 branches : [main]
55jobs :
6+ docs :
7+ runs-on : ${{ matrix.os }}
8+ strategy :
9+ matrix :
10+ # windows and macos are disabled, because we don't do anything target specific
11+ # os: [ubuntu-latest, windows-latest, macOS-latest]
12+ os : [ubuntu-latest]
13+ rust : [nightly]
14+
15+ steps :
16+ - uses : hecrj/setup-rust-action@v1
17+ with :
18+ rust-version : ${{ matrix.rust }}
19+ - uses : actions/checkout@master
20+ - name : Run doc tests
21+ run : cargo +nightly test --verbose --all-features --doc
22+
623 test :
724 runs-on : ${{ matrix.os }}
825 strategy :
2037 rust-version : ${{ matrix.rust }}
2138 - uses : actions/checkout@master
2239 - name : Run tests
23- run : cargo +nightly test --verbose --no-default-features --features "${{ matrix.features_std }}" --features "${{ matrix.features_nightly }}"
40+ run : cargo +nightly test --lib --tests -- verbose --no-default-features --features "${{ matrix.features_std }}" --features "${{ matrix.features_nightly }}"
You can’t perform that action at this time.
0 commit comments