Skip to content

Commit

Permalink
Added buf installation to github action
Browse files Browse the repository at this point in the history
  • Loading branch information
codebycarson committed Dec 5, 2024
1 parent 4f4e543 commit 115acb4
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,15 @@ jobs:
- uses: browser-actions/setup-chrome@v1
- run: chrome --version

- name: Install buf
run: |
# Download the buf binary
curl -sSL https://github.com/bufbuild/buf/releases/download/v1.27.1/buf-Linux-x86_64 -o /usr/local/bin/buf
# Make it executable
chmod +x /usr/local/bin/buf
# Verify installation
buf --version
- name: Install dependencies
run: yarn install

Expand Down

0 comments on commit 115acb4

Please sign in to comment.