Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
chore: tarpaulin is broken on nightly (#41)
Browse files Browse the repository at this point in the history
* chore: tarpaulin is broken on nightly

* chore: run workflow manually for now

* chore: shut up clippy
  • Loading branch information
dvdplm authored Mar 27, 2024
1 parent ccc7e19 commit 8665bf4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/code-coverage.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Coverage

on:
push:
branches: [main]
pull_request:
branches: [main]
# Re-enable when https://github.com/xd009642/tarpaulin/issues/1493 is fixed
# push:
# branches: [main]
# pull_request:
# branches: [main]
workflow_dispatch:

jobs:
Expand Down
5 changes: 4 additions & 1 deletion src/sign/signature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,10 @@ impl<C: CipherSuite> SignatureAggregator<C, Initial<'_>> {
}

// Ensure that our new state is ordered and deduplicated.
self.state.signers = self.get_signers().clone();
self.state.signers = {
let signers = self.get_signers().clone();
signers
};

for signer in &self.state.signers {
if self
Expand Down

0 comments on commit 8665bf4

Please sign in to comment.