- update README.md #252
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: golang-build-actions-workflow | |
on: push | |
jobs: | |
test: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.17.5' # The Go version to download (if necessary) and use. | |
- run: go get . | |
- run: go build | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: cpk | |
path: cpk.exe |