|
@@ -0,0 +1,34 @@
|
|
|
|
|
+name: Test
|
|
|
|
|
+
|
|
|
|
|
+on:
|
|
|
|
|
+ push:
|
|
|
|
|
+ branches: [ master ]
|
|
|
|
|
+ pull_request:
|
|
|
|
|
+ branches: [ master ]
|
|
|
|
|
+
|
|
|
|
|
+jobs:
|
|
|
|
|
+
|
|
|
|
|
+ build:
|
|
|
|
|
+ name: Test
|
|
|
|
|
+ runs-on: ${{ matrix.os }}
|
|
|
|
|
+ strategy:
|
|
|
|
|
+ matrix:
|
|
|
|
|
+ os: [windows-latest, ubuntu-latest, macos-latest]
|
|
|
|
|
+
|
|
|
|
|
+ steps:
|
|
|
|
|
+
|
|
|
|
|
+ - name: Set up Go 1.x
|
|
|
|
|
+ uses: actions/setup-go@v2
|
|
|
|
|
+ with:
|
|
|
|
|
+ go-version: ^1.14
|
|
|
|
|
+ id: go
|
|
|
|
|
+
|
|
|
|
|
+ - name: Check out code into the Go module directory
|
|
|
|
|
+ uses: actions/checkout@v2
|
|
|
|
|
+
|
|
|
|
|
+ - name: Get dependencies
|
|
|
|
|
+ run: |
|
|
|
|
|
+ go get -v -t -d ./...
|
|
|
|
|
+
|
|
|
|
|
+ - name: Test
|
|
|
|
|
+ run: go test -parallel 1 -timeout 6h -v ./...
|