Skip to content

Commit

Permalink
chore: fix syntax 2
Browse files Browse the repository at this point in the history
  • Loading branch information
vmx committed Aug 14, 2024
1 parent 2875821 commit b0ff94b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,12 +60,12 @@ jobs:
components: clippy
- name: Run cargo clippy default features
run: cargo clippy --workspace --all-targets -- -D warnings
- name: Run cargo clippy with cuda and opencl features
run: cargo clippy --workspace --all-targets --features cuda,opencl -- -D warnings
- name: Run cargo clippy with cuda feature
run: cargo clippy --workspace --all-targets --no-default-features --features cuda -- -D warnings
- name: Run cargo clippy with opencl feature
run: cargo clippy --workspace --all-targets --no-default-features --features opencl -- -D warnings
#- name: Run cargo clippy with cuda and opencl features
# run: cargo clippy --workspace --all-targets --features cuda,opencl -- -D warnings
#- name: Run cargo clippy with cuda feature
# run: cargo clippy --workspace --all-targets --no-default-features --features cuda -- -D warnings
#- name: Run cargo clippy with opencl feature
# run: cargo clippy --workspace --all-targets --no-default-features --features opencl -- -D warnings

check_fmt_and_docs:
needs: set-msrv
Expand Down

0 comments on commit b0ff94b

Please sign in to comment.