Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ name: rust-ci

env:
RUST_MSRV: &RUST_MSRV "1.63"
CBINDGEN_VERSION: "0.29.2"

jobs:
codespell:
Expand Down Expand Up @@ -132,7 +133,7 @@ jobs:
with:
components: rustfmt,clippy
- name: install cbindgen
run: cargo install --force cbindgen
run: cargo install --force --locked cbindgen@${{ env.CBINDGEN_VERSION }}
- name: make lint
run: make CARGO_NIGHTLY=cargo lint

Expand All @@ -142,7 +143,7 @@ jobs:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- name: install cbindgen
run: cargo install --force cbindgen
run: cargo install --force --locked cbindgen@${{ env.CBINDGEN_VERSION }}
- run: make validate-cbindgen

validate-elf-symbols:
Expand Down
Loading