Skip to content

Commit 60bcc67

Browse files
authored
Netlink update (#95)
1 parent d090d22 commit 60bcc67

File tree

20 files changed

+193
-202
lines changed

20 files changed

+193
-202
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,26 @@ env:
1818
jobs:
1919
test:
2020
runs-on: [self-hosted, Linux, X64]
21-
container: rust:1.80
21+
container: rust:1-slim
2222

2323
steps:
24-
- name: Debug
25-
run: echo ${{ github.ref_name }}
2624
- name: Checkout
27-
uses: actions/checkout@v3
28-
with:
29-
submodules: recursive
25+
uses: actions/checkout@v5
26+
3027
- name: Cache
3128
uses: Swatinem/rust-cache@v2
3229
with:
3330
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
31+
3432
- name: Check format
3533
run: |
3634
rustup component add rustfmt
3735
cargo fmt -- --check
36+
3837
- name: Run cargo deny
39-
uses: EmbarkStudios/cargo-deny-action@v2
38+
run: |
39+
cargo install cargo-deny
40+
cargo deny check
41+
4042
- name: Run tests
4143
run: cargo test --locked --no-fail-fast

0 commit comments

Comments
 (0)