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.
1 parent f193591 commit 912ed95Copy full SHA for 912ed95
.github/workflows/test.yml
@@ -2,9 +2,9 @@ name: Test
2
3
on:
4
push:
5
- branches: [ master ]
+ branches: [main]
6
pull_request:
7
8
jobs:
9
build:
10
strategy:
@@ -13,11 +13,11 @@ jobs:
13
os: [ubuntu-latest, windows-latest]
14
runs-on: ${{ matrix.os }}
15
steps:
16
- - name: Install Go
17
- uses: actions/setup-go@v2
18
- with:
19
- go-version: ${{ matrix.go-version }}
20
- - name: Checkout code
21
- uses: actions/checkout@v2
22
- - name: Test
23
- run: go test -race -v .
+ - name: Install Go
+ uses: actions/setup-go@v2
+ with:
+ go-version: ${{ matrix.go-version }}
+ - name: Checkout code
+ uses: actions/checkout@v2
+ - name: Test
+ run: go test -race -v .
0 commit comments