Merge pull request #67 from fufuok/master #101
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-windows | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
GO111MODULE: off | |
jobs: | |
test: | |
name: build-windows | |
strategy: | |
fail-fast: false | |
matrix: | |
go: [1.13.x] | |
os: [windows-latest] | |
runs-on: ${{ matrix.os}} | |
steps: | |
- name: install golang | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: checkout code | |
uses: actions/checkout@v2 | |
- name: go env | |
run: | | |
printf "$(go version)\n" | |
printf "\n\ngo environment:\n\n" | |
go get -u github.com/lesismal/arpc | |
go env | |
echo "::set-output name=short_sha::$(git rev-parse --short HEAD)" | |
- name: go test | |
run: go test -timeout 60s -coverprofile="./coverage" |