Skip to content

Commit 6856ed6

Browse files
committed
Fix CI
1 parent b1b1517 commit 6856ed6

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.github/workflows/windows.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,9 @@ jobs:
6262
- name: 'test ignored'
6363
run: cargo test -- --ignored
6464
shell: cmd
65+
- name: 'test rustfmt-core'
66+
run: cargo test --manifest-path rustfmt-core/Cargo.toml
67+
shell: cmd
68+
- name: 'test rustfmt-core ignored'
69+
run: cargo test --manifest-path rustfmt-core/Cargo.toml -- --ignored
70+
shell: cmd

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ matrix:
4646
script:
4747
- |
4848
if [ -z ${INTEGRATION} ]; then
49-
cargo build && cargo test && cargo test -- --ignored
49+
cargo build && cargo test && cargo test -- --ignored && cargo test --manifest-path rustfmt-core/Cargo.toml && cargo test --manifest-path rustfmt-core/Cargo.toml -- --ignored
5050
else
5151
./ci/integration.sh
5252
fi

appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,3 +51,5 @@ test_script:
5151
- cargo build --verbose
5252
- cargo test
5353
- cargo test -- --ignored
54+
- cargo test --manifest-path rustfmt-core/Cargo.toml
55+
- cargo test --manifest-path rustfmt-core/Cargo.toml -- --ignored

0 commit comments

Comments
 (0)