Skip to content

Commit

Permalink
fix: add go version and use correct make target
Browse files Browse the repository at this point in the history
  • Loading branch information
belitre committed Jun 5, 2024
1 parent 55ad94f commit de5333b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/on-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
defaults:
run:
shell: bash
env:
GO_VERSION: '1.22.4'
steps:
- name: checkout
uses: actions/checkout@v4
Expand All @@ -22,6 +24,8 @@ jobs:

- name: install go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}

- name: build
run: make uild-cross
run: make build-cross
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/belitre/canu

go 1.22.1
go 1.22.4

require (
github.com/aws/aws-sdk-go-v2 v1.27.1
Expand Down

0 comments on commit de5333b

Please sign in to comment.