Skip to content

Commit 0a60338

Browse files
committedMar 17, 2025·
update CI
1 parent 9b24ab4 commit 0a60338

File tree

5 files changed

+1462
-10
lines changed

5 files changed

+1462
-10
lines changed
 

‎.github/workflows/lint.yaml

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@ name: Lint
22

33
on:
44
push:
5-
branches:
6-
- main
75
pull_request:
86

97
jobs:
108
clippy:
119
runs-on: ubuntu-latest
1210
steps:
13-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1412

1513
- uses: actions-rs/toolchain@v1
1614
with:
@@ -25,7 +23,7 @@ jobs:
2523
rustfmt:
2624
runs-on: ubuntu-latest
2725
steps:
28-
- uses: actions/checkout@v2
26+
- uses: actions/checkout@v4
2927

3028
- uses: actions-rs/toolchain@v1
3129
with:

‎.github/workflows/security.yaml

+2-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,14 @@ name: Security audit
22

33
on:
44
push:
5-
branches:
6-
- main
75
pull_request:
86

97
jobs:
108
security_audit:
119
runs-on: ubuntu-latest
1210
steps:
13-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1412

15-
- uses: actions-rs/audit-check@v1
13+
- uses: rustsec/audit-check@v2
1614
with:
1715
token: ${{ secrets.GITHUB_TOKEN }}

‎.github/workflows/semver.yaml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Semver compliance check
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
jobs:
8+
semver_check:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: obi1kenobi/cargo-semver-checks-action@v2
13+

‎.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
/Cargo.lock
21
/target
3-
**/*.rs.bk

‎Cargo.lock

+1,445
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.