Skip to content

Commit 8c48538

Browse files
committed
Clean up DO_NO_STD usage
Clean up `DO_NO_STD` usage by doing: - Do not run in `Nightly` job, this is unnecessary because we already run it in the `Tests` job with the nightly toolchain. - Set `DO_NO_STD` directly in the job instead of in the matrix, this is functionally the same but slightly clearer.
1 parent cc32761 commit 8c48538

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ jobs:
3737
- name: Running benchmarks
3838
env:
3939
DO_BENCH: true
40-
DO_NO_STD: true
4140
run: ./contrib/test.sh
4241
- name: Building docs
4342
env:
@@ -59,7 +58,6 @@ jobs:
5958
- rust: nightly
6059
- rust: 1.41.1
6160
- rust: 1.47
62-
DO_NO_STD: true
6361
steps:
6462
- name: Checkout Crate
6563
uses: actions/checkout@v2
@@ -72,7 +70,7 @@ jobs:
7270
- name: Running cargo
7371
env:
7472
DO_FEATURE_MATRIX: true
75-
DO_NO_STD: ${{ matrix.DO_NO_STD }}
73+
DO_NO_STD: true
7674
run: ./contrib/test.sh
7775

7876
Embedded:

0 commit comments

Comments
 (0)