Skip to content

Commit 1ef6516

Browse files
jhbruhneldruin
authored andcommitted
Replace no_std with std feature in gitlab actions config
1 parent dc74f8b commit 1ef6516

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
matrix:
1616
rust: [stable]
17-
FEATURES: ['', 'from_str', 'no_std']
17+
FEATURES: ['', 'from_str', 'std']
1818

1919
include:
2020
# Test nightly but don't fail
@@ -62,7 +62,7 @@ jobs:
6262
- uses: actions-rs/cargo@v1
6363
with:
6464
command: build
65-
args: --target=${{ matrix.TARGET }} --features no_std
65+
args: --target=${{ matrix.TARGET }}
6666

6767
fmt:
6868
runs-on: ubuntu-latest
@@ -83,7 +83,7 @@ jobs:
8383
runs-on: ubuntu-latest
8484
strategy:
8585
matrix:
86-
FEATURES: ['', 'from_str', 'no_std']
86+
FEATURES: ['', 'from_str', 'std']
8787
steps:
8888
- uses: actions/checkout@v2
8989
- uses: actions-rs/toolchain@v1

0 commit comments

Comments
 (0)