Skip to content
Open
Show file tree
Hide file tree
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
23 changes: 15 additions & 8 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Install Rust 1.91
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.91

- name: Install protobuf compiler
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
Expand All @@ -35,8 +37,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Install Rust 1.91
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.91

- name: Install protobuf compiler
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
Expand Down Expand Up @@ -67,9 +71,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Install Rust 1.91
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.91
components: clippy

- name: Install protobuf compiler
Expand All @@ -87,8 +92,10 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Install Rust stable
uses: dtolnay/rust-toolchain@stable
- name: Install Rust 1.91
uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.91

- name: Install protobuf compiler
run: sudo apt-get update && sudo apt-get install -y protobuf-compiler
Expand Down
Loading