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 858f374 commit 6775340Copy full SHA for 6775340
.github/workflows/go-mod.yml
.github/workflows/go.yml
@@ -1,4 +1,4 @@
1
-name: Go (No Modules)
+name: Go Modules
2
3
on:
4
push:
@@ -7,24 +7,17 @@ on:
7
branches: [ master ]
8
9
jobs:
10
-
11
build:
12
runs-on: ubuntu-latest
13
steps:
14
- uses: actions/checkout@v2
15
- with:
16
- fetch-depth: 1
17
- path: go/src/github.com/evanphx/json-patch
18
19
- name: Set up Go
20
uses: actions/setup-go@v2
21
with:
22
- go-version: 1.15
+ go-version: 1.18
23
24
- name: Test
25
run: |
26
- cd /home/runner/work/json-patch/json-patch/go/src/github.com/evanphx/json-patch
+ cd v5
27
go get ./...
28
go test -v ./...
29
- env:
30
- GOPATH: /home/runner/work/json-patch/json-patch/go
0 commit comments