Clean GitHub release #9
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: gokong build | |
on: | |
push: | |
branches: | |
- develop | |
- stage | |
- master | |
jobs: | |
build: | |
name: building gokong | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
stable: 'false' | |
go-version: '1.16.6' # The Go version to download (if necessary) and use. | |
- run: go version | |
- name: Run test | |
run: make test | |