Bump hk-split-maker from 3f67303
to 81ad9c7
#338
Workflow file for this run
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: Go | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Create Fake LiveSplit Files | |
run: | | |
touch LiveSplit.AutoSplitters.xml | |
touch LiveSplit.HollowKnight.dll | |
- name: Set Go Env | |
run: | | |
go env -w GOOS=windows | |
go env -w GOARCH=amd64 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: latest | |
args: --timeout 5m0s | |
- name: Build | |
run: go build -v ./... |