File tree Expand file tree Collapse file tree 2 files changed +4
-6
lines changed
Expand file tree Collapse file tree 2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 6565 run : |
6666 cargo check --workspace --target ${{ matrix.target }}
6767 cargo check --workspace --target ${{ matrix.target }} --features regex
68- cargo check --workspace --target ${{ matrix.target }} --no-default-features
69- cargo check --workspace --target ${{ matrix.target }} --no-default-features --features regex
7068
71- - name : Check wasm32-unknown-unknown
72- if : ${{ matrix.target == 'wasm32-unknown-unknown' }}
69+ - name : Build | Check (no default features)
7370 run : |
7471 cargo check --workspace --target ${{ matrix.target }} --no-default-features
7572 cargo check --workspace --target ${{ matrix.target }} --no-default-features --features regex
9895 - name : Build | Test
9996 run : cargo test --workspace --all-features -- --include-ignored
10097
101- - name : Test (no default features)
98+ - name : Build | Test (no default features)
10299 run : cargo test --workspace --no-default-features
103100 cargo-deny :
104101 runs-on : ubuntu-22.04
Original file line number Diff line number Diff line change @@ -807,7 +807,8 @@ mod in_memory {
807807 . collect :: < Vec < _ > > ( ) ;
808808 Ok ( Box :: new ( entries. into_iter ( ) ) )
809809 }
810- _ => Err ( Error :: new ( ErrorKind :: NotADirectory , "Not a directory" ) ) ,
810+ // should use ErrorKind::NotADirectory once upgrading rust version
811+ _ => Err ( Error :: new ( ErrorKind :: Other , "Not a directory" ) ) ,
811812 }
812813 }
813814
You can’t perform that action at this time.
0 commit comments