Upgrade to Go 1.23 and update github actions steps (#43) #76
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Test API Runner | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go Env | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "^1.23.0" | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Go test | |
run: go test | |
- name: Build apirunner binary | |
run: make -C cmd/apirunner build | |
- name: GoReleaser Check | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: check |