Skip to content

Commit 44e4562

Browse files
committed
Merge branch 'golddydev/vrf-validation' into golddydev/kes-validation
2 parents 19e960e + 0f98236 commit 44e4562

File tree

50 files changed

+1913
-2380
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1913
-2380
lines changed

.cargo/audit.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[advisories]
2+
ignore = []
3+
informational_warnings = []

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,28 @@
1-
# Pull Request Title
2-
<!--
3-
Use a short, descriptive title:
4-
Example: `node: fix crash when config is absent`
5-
-->
6-
71
## Description
8-
<!--
2+
93
Describe what this PR does and why. Keep it concise but include enough context
104
for reviewers who are not familiar with the area.
11-
-->
125

136
## Related Issue(s)
14-
<!--
157
Link any related issues, e.g. `Fixes #123` or `Relates to #456`.
16-
-->
178

189
## How was this tested?
19-
<!--
2010
Describe the tests that you ran to verify your changes. Include instructions
2111
so reviewers can reproduce. Examples:
2212
- unit tests (command)
2313
- integration tests (how to run)
2414
- manual steps
25-
-->
2615

2716
## Checklist
17+
2818
- [ ] My code builds and passes local tests
2919
- [ ] I added/updated tests for my changes, where applicable
3020
- [ ] I updated documentation (if applicable)
3121
- [ ] CI is green for this PR
3222

3323
## Impact / Side effects
34-
<!--
3524
Describe any potential side effects, e.g. performance, compatibility, or security concerns.
3625
If the PR introduces a breaking change, explain migration steps for users.
37-
-->
3826

3927
## Reviewer notes / Areas to focus
40-
<!--
4128
If you want specific feedback, list files/functions to review or aspects you are unsure about.
42-
-->

.github/workflows/run-tests-on-push-to-main.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,23 @@ jobs:
2020
- name: Checkout code
2121
uses: actions/checkout@v4
2222

23+
- name: Install Shear
24+
run: cargo install cargo-shear
25+
2326
- name: Run Format
2427
run: cargo fmt --all -- --check
2528

2629
- name: Run Clippy
2730
run: cargo clippy --all-targets --all-features -- -D warnings
2831

32+
- name: Run Shear
33+
run: cargo shear
34+
35+
- name: Run Audit
36+
uses: rustsec/[email protected]
37+
with:
38+
token: ${{ secrets.GITHUB_TOKEN }}
39+
2940
- name: Run Build
3041
run: cargo build --verbose
3142

0 commit comments

Comments
 (0)