Skip to content

Commit

Permalink
ci: fix arm64 runners missing golang
Browse files Browse the repository at this point in the history
  • Loading branch information
charlie0129 committed Sep 18, 2024
1 parent 4af9225 commit 1049ab7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-test-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ jobs:
with:
fetch-depth: 0

- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.23

- name: Build
run: make build-darwin_arm64

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/gochecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ jobs:
- name: Checkout Code
uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.23

- name: Lint
uses: golangci/golangci-lint-action@v6
with:
Expand Down

0 comments on commit 1049ab7

Please sign in to comment.