We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
make
1 parent 37ddc22 commit ba4f15fCopy full SHA for ba4f15f
.github/workflows/test.yml
@@ -7,9 +7,25 @@ jobs:
7
os: [ubuntu-latest, macos-latest]
8
runs-on: ${{ matrix.os }}
9
steps:
10
+ - name: Setup go
11
+ uses: actions/setup-go@v2
12
+ with:
13
+ go-version: '1.17'
14
+
15
- name: Checkout code
16
uses: actions/checkout@v2
17
18
- name: Get full repo history
19
run: git fetch --prune --unshallow --tags
20
21
+ - name: Download dependencies
22
+ run: go mod download
23
24
+ - name: Build
25
+ run: |
26
+ mkdir -p bin
27
+ go build -o bin .
28
+ ls -la bin
29
30
- name: Test
- run: make test
31
+ run: go test -race -timeout 60s ./...
0 commit comments