Skip to content

Commit

Permalink
ci: Fix the rate limit excess with setup-protoc action (#117)
Browse files Browse the repository at this point in the history
* ci: Fix the rate limit excess with setup-protoc action

* ci: Re-run github actions workflow when yml files are updated
  • Loading branch information
conr2d authored Jan 8, 2025
1 parent 37d6865 commit 26a3136
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ on:
paths:
- '**.rs'
- '**.toml'
- '**.yml'
pull_request:
paths:
- '**.rs'
- '**.toml'
- '**.yml'

env:
CARGO_TERM_COLOR: always
Expand All @@ -21,6 +23,8 @@ jobs:
with:
submodules: recursive
- uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: rustup show
- uses: Swatinem/rust-cache@v2
- name: Check
Expand All @@ -36,6 +40,8 @@ jobs:
with:
submodules: recursive
- uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: rustup show
- uses: Swatinem/rust-cache@v2
- name: Build
Expand All @@ -47,6 +53,8 @@ jobs:
with:
submodules: recursive
- uses: arduino/setup-protoc@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- run: rustup show
- uses: Swatinem/rust-cache@v2
- name: Test
Expand Down

0 comments on commit 26a3136

Please sign in to comment.