File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -92,13 +92,14 @@ jobs:
9292 - name : fmt
9393 run : cargo fmt --all -- --check
9494 - name : fmt fuzz
95- run : cargo fmt --manifest-path ${{ github.workspace }}/fuzz/Cargo.toml -- --check
95+ run : cargo fmt --all -- manifest-path ${{ github.workspace }}/fuzz/Cargo.toml -- --check
9696
9797 check_minimal_versions :
9898 if : github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
99- matrix :
100- # Only check minimal versions for the released library.
101- workspace : ['Cargo.toml']
99+ strategy :
100+ matrix :
101+ # Only check minimal versions for the released library.
102+ workspace : ['Cargo.toml']
102103 runs-on : ubuntu-latest
103104
104105 steps :
@@ -123,7 +124,7 @@ jobs:
123124 - uses : actions/checkout@v5
124125 - run : rustup toolchain add nightly && rustup default nightly && rustup component add clippy
125126
126- - run : cargo clippy --all-targets ${{ matrix.feature_flag }} --manifest-path ${{ github.workspace }}/${{ matrix.workspace }} -- -D warnings
127+ - run : cargo clippy --workspace ${{ matrix.feature_flag }} --manifest-path ${{ github.workspace }}/${{ matrix.workspace }} -- -D warnings
127128 - run : cargo doc --no-deps ${{ matrix.feature_flag }} --manifest-path ${{ github.workspace }}/${{ matrix.workspace }}
128129
129130 fuzz_read :
You can’t perform that action at this time.
0 commit comments