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 08317d1 commit 858f374Copy full SHA for 858f374
.github/workflows/go-mod.yml
@@ -0,0 +1,23 @@
1
+name: Go Modules
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+ - name: Set up Go
15
+ uses: actions/setup-go@v2
16
+ with:
17
+ go-version: 1.18
18
19
+ - name: Test
20
+ run: |
21
+ cd v5
22
+ go get ./...
23
+ go test -v ./...
.github/workflows/go.yml
@@ -1,4 +1,4 @@
-name: Go
+name: Go (No Modules)
on:
push:
@@ -19,7 +19,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
- go-version: 1.18
+ go-version: 1.15
24
- name: Test
25
run: |
0 commit comments