Skip to content
Merged
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
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ jobs:
- name: Check toml format
run: make check-toml

- name: Install protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Cargo format
run: make check-fmt

Expand Down Expand Up @@ -81,6 +86,11 @@ jobs:
- name: Cache Rust artifacts
uses: Swatinem/rust-cache@v2

- name: Install protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Build
run: make build

Expand Down Expand Up @@ -123,6 +133,11 @@ jobs:
- name: Setup Rust toolchain
uses: ./.github/actions/setup-builder

- name: Install protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Cache Rust artifacts
uses: Swatinem/rust-cache@v2

Expand All @@ -142,6 +157,10 @@ jobs:
- uses: actions/checkout@v5
- name: Setup Nightly Rust toolchain
uses: ./.github/actions/setup-builder
- name: Install protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Generate minimal versions lockfile
run: |
cargo generate-lockfile -Z direct-minimal-versions
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ jobs:
- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: '0.4.36'
mdbook-version: "0.4.36"

- name: Install protoc
uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Build
working-directory: website
Expand Down
Loading
Loading