Skip to content

Commit 81f57ed

Browse files
committed
merge upstream/main
Signed-off-by: William Hankins <william@sundae.fi>
2 parents 368402e + 35bd816 commit 81f57ed

File tree

42 files changed

+1493
-2232
lines changed

Some content is hidden

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

42 files changed

+1493
-2232
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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,25 @@
11
# Pull Request Title
2+
23
<!--
34
Use a short, descriptive title:
45
Example: `node: fix crash when config is absent`
56
-->
67

78
## Description
9+
810
<!--
911
Describe what this PR does and why. Keep it concise but include enough context
1012
for reviewers who are not familiar with the area.
1113
-->
1214

1315
## Related Issue(s)
16+
1417
<!--
1518
Link any related issues, e.g. `Fixes #123` or `Relates to #456`.
1619
-->
1720

1821
## How was this tested?
22+
1923
<!--
2024
Describe the tests that you ran to verify your changes. Include instructions
2125
so reviewers can reproduce. Examples:
@@ -25,18 +29,21 @@ so reviewers can reproduce. Examples:
2529
-->
2630

2731
## Checklist
32+
2833
- [ ] My code builds and passes local tests
2934
- [ ] I added/updated tests for my changes, where applicable
3035
- [ ] I updated documentation (if applicable)
3136
- [ ] CI is green for this PR
3237

3338
## Impact / Side effects
39+
3440
<!--
3541
Describe any potential side effects, e.g. performance, compatibility, or security concerns.
3642
If the PR introduces a breaking change, explain migration steps for users.
3743
-->
3844

3945
## Reviewer notes / Areas to focus
46+
4047
<!--
4148
If you want specific feedback, list files/functions to review or aspects you are unsure about.
4249
-->

.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/audit-check@v2.0.0
37+
with:
38+
token: ${{ secrets.GITHUB_TOKEN }}
39+
2940
- name: Run Build
3041
run: cargo build --verbose
3142

0 commit comments

Comments
 (0)