File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,17 @@ jobs:
2222 rustup set profile minimal
2323 rustup override set ${{ matrix.version }}
2424
25+ - name : Rustfmt check
26+ if : matrix.version == '1.46.0'
27+ run : |
28+ rustup component add rustfmt
29+ cargo fmt --all -- --check
30+
2531 - name : Run `cargo test` on workspace
2632 run : cargo test --workspace
2733
2834 - name : phf_macros UI test
29- if : matrix.version == '1.40 .0'
35+ if : matrix.version == '1.46 .0'
3036 working-directory : phf_macros
3137 run : cargo test --features=unicase -- --ignored --test-threads=1
3238
Original file line number Diff line number Diff line change 11#[ test]
2- #[ ignore] // compiler error message format is different between 1.32.0 and nightly
2+ #[ ignore] // diagnostics may be different between stable and nightly.
33fn compile_test_unicase ( ) {
44 let t = trybuild:: TestCases :: new ( ) ;
55 t. compile_fail ( "tests/compile-fail-unicase/*.rs" ) ;
You can’t perform that action at this time.
0 commit comments