Skip to content

Commit 23dea60

Browse files
authored
Merge pull request #2971 from dtolnay/serdecoreci
Add CI coverage of serde_core
2 parents 69aa109 + 690785f commit 23dea60

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- run: cd serde && cargo build --no-default-features --features alloc
7171
- run: cd serde && cargo build --no-default-features --features rc,alloc
7272
- run: cd serde && cargo build --no-default-features --features unstable
73-
- run: cd serde && cargo test --features derive,rc,unstable
73+
- run: cd serde_core && cargo test --features rc,unstable
7474
- run: cd test_suite/no_std && cargo build
7575
if: matrix.os != 'windows'
7676
- run: cd serde_derive && cargo check --tests
@@ -145,6 +145,7 @@ jobs:
145145
- uses: actions/checkout@v4
146146
- uses: dtolnay/rust-toolchain@clippy
147147
- run: cd serde && cargo clippy --features rc,unstable -- -Dclippy::all -Dclippy::pedantic
148+
- run: cd serde_core && cargo clippy --features rc,unstable -- -Dclippy::all -Dclippy::pedantic
148149
- run: cd serde_derive && cargo clippy -- -Dclippy::all -Dclippy::pedantic
149150
- run: cd serde_derive_internals && cargo clippy -- -Dclippy::all -Dclippy::pedantic
150151
- run: cd test_suite && cargo clippy --tests --features unstable -- -Dclippy::all -Dclippy::pedantic
@@ -160,7 +161,7 @@ jobs:
160161
with:
161162
toolchain: nightly-2025-05-16 # https://github.com/rust-lang/miri/issues/4323
162163
- run: cargo miri setup
163-
- run: cd serde && cargo miri test --features derive,rc,unstable
164+
- run: cd serde_core && cargo miri test --features rc,unstable
164165
env:
165166
MIRIFLAGS: -Zmiri-strict-provenance
166167
- run: cd test_suite && cargo miri test --features unstable

0 commit comments

Comments
 (0)