-
Notifications
You must be signed in to change notification settings - Fork 155
47 lines (44 loc) · 1.06 KB
/
build_windows.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Build-Windows
on:
push:
branches:
- master
- dev
pull_request:
branches:
- master
- dev
env:
GO111MODULE: off
jobs:
Build-Windows:
name: Build-Windows
strategy:
fail-fast: false
matrix:
go: [1.18.x]
os: [windows-latest]
runs-on: ${{ matrix.os}}
steps:
- name: install golang
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: checkout
uses: actions/checkout@v2
- name: go env
run: |
printf "$(go version)\n"
printf "\n\ngo environment:\n\n"
go get -u github.com/lesismal/nbio/...
go env
echo "short_sha=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: go test
run: go test -covermode=atomic -timeout 60s -coverprofile="./coverage"
- name: update code coverage report
uses: codecov/codecov-action@v1.2.1
with:
files: "./coverage"
flags: unittests
verbose: true
name: codecov-nbio