File tree 3 files changed +40
-18
lines changed 3 files changed +40
-18
lines changed Original file line number Diff line number Diff line change 37
37
run : |
38
38
rustc -Vv
39
39
cargo -V
40
- cargo build
40
+ cargo build --manifest-path rustfmt-core/Cargo.toml
41
+ # - name: bin tests
42
+ # run: cargo test-bin
43
+ # - name: lib tests
44
+ # run: cargo test-lib
45
+ # - name: config tests
46
+ # run: cargo test-config
47
+ # - name: emitter tests
48
+ # run: cargo test-emitter
41
49
- name : test
42
- run : cargo test
43
- - name : ' test ignored'
44
- run : cargo test -- --ignored
50
+ run : cargo test-all
51
+ - name : test ignored
52
+ run : cargo test-all -- --ignored
Original file line number Diff line number Diff line change 32
32
run : |
33
33
rustc -Vv
34
34
cargo -V
35
- cargo build
35
+ cargo build --manifest-path rustfmt-core/Cargo.toml
36
+ # - name: bin tests
37
+ # run: cargo test-bin
38
+ # - name: lib tests
39
+ # run: cargo test-lib
40
+ # - name: config tests
41
+ # run: cargo test-config
42
+ # - name: emitter tests
43
+ # run: cargo test-emitter
36
44
- name : test
37
- run : cargo test
38
- - name : ' test ignored'
39
- run : cargo test -- --ignored
45
+ run : cargo test-all
46
+ - name : test ignored
47
+ run : cargo test-all -- --ignored
Original file line number Diff line number Diff line change @@ -77,17 +77,23 @@ jobs:
77
77
run : |
78
78
rustc -Vv
79
79
cargo -V
80
- cargo build
80
+ cargo build --manifest-path rustfmt-core/Cargo.toml
81
81
shell : cmd
82
+ # - name: bin tests
83
+ # run: cargo test-bin
84
+ # shell: cmd
85
+ # - name: lib tests
86
+ # run: cargo test-lib
87
+ # shell: cmd
88
+ # - name: config tests
89
+ # run: cargo test-config
90
+ # shell: cmd
91
+ # - name: emitter tests
92
+ # run: cargo test-emitter
93
+ # shell: cmd
82
94
- name : test
83
- run : cargo test
95
+ run : cargo test-all
84
96
shell : cmd
85
- - name : ' test ignored'
86
- run : cargo test -- --ignored
87
- shell : cmd
88
- - name : ' test rustfmt-core'
89
- run : cargo test --manifest-path rustfmt-core/Cargo.toml
90
- shell : cmd
91
- - name : ' test rustfmt-core ignored'
92
- run : cargo test --manifest-path rustfmt-core/Cargo.toml -- --ignored
97
+ - name : test ignored
98
+ run : cargo test-all -- --ignored
93
99
shell : cmd
You can’t perform that action at this time.
0 commit comments