Skip to content

Commit 2e73932

Browse files
committed
Fixed Rust CI
Clippy turned warnings into errors, which is not desirable in our case. Also removed `too_many_arguments` warning as we don't have any other choice than to pass over 7 arguments to functions when building MPI event objects.
1 parent 4391677 commit 2e73932

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
run: |
3535
cd interpol-rs
3636
cargo fmt -- --check
37-
cargo clippy -- -D warnings
37+
cargo clippy -- -A clippy::too_many_arguments
3838
3939
- name: Test
4040
run: |

0 commit comments

Comments
 (0)