Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettladley committed Oct 22, 2024
1 parent 506f4c8 commit e23f2ab
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 @@ -91,6 +91,14 @@ jobs:
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Cache Make Installation
uses: actions/cache@v4
with:
path: /usr/bin/make
key: ${{ runner.os }}-make-install
- name: Install Make if not cached
run: sudo apt-get update && sudo apt-get install -y make
if: steps.cache-make.outputs.cache-hit != 'true'
- name: Set up Go
uses: actions/setup-go@v5
with:
Expand Down

0 comments on commit e23f2ab

Please sign in to comment.