Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: fix CI #376

Merged
merged 1 commit into from
Dec 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore: fix CI
Only enabling the `arb` feature on the `codetable` crate now fails, due
to changes to the `arbitrary_derive` crate. It now errors if the enum
its derived from is empty. Which it is in our case.
  • Loading branch information
vmx committed Dec 6, 2024
commit e29ec3fbd678d8cb9f870aa25114282d1fb4c09c
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -148,7 +148,7 @@ jobs:
tool: cargo-hack

- name: Cargo Hack - Check each feature
run: cargo hack check -p multihash-codetable --each-feature
run: cargo hack check -p multihash-codetable --each-feature --exclude-features arb
shell: bash
env:
RUSTFLAGS: -D warnings
Loading