Skip to content

Commit 364f9bb

Browse files
committed
Add lockbud task to CI
1 parent 8cf686f commit 364f9bb

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.github/workflows/test-suite.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,20 @@ jobs:
5454
done
5555
echo "skip_ci=$SKIP_CI" >> $GITHUB_OUTPUT
5656
57+
lockbud:
58+
name: lockbud
59+
runs-on: ubuntu-latest
60+
container:
61+
image: eserilev/lockbud:latest
62+
steps:
63+
- name: Checkout repository
64+
uses: actions/checkout@v3
65+
- name: Install dependencies
66+
run: apt update && apt install -y cmake
67+
- name: Generate code coverage
68+
run: |
69+
cargo lockbud -k deadlock
70+
5771
target-branch-check:
5872
name: target-branch-check
5973
runs-on: ubuntu-latest

consensus/state_processing/src/consensus_context.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,7 @@ impl<E: EthSpec> ConsensusContext<E> {
147147
}
148148
}
149149

150+
#[allow(elided_named_lifetimes)]
150151
pub fn get_indexed_attestation<'a>(
151152
&'a mut self,
152153
state: &BeaconState<E>,

0 commit comments

Comments
 (0)