Skip to content

Commit 3c3c85e

Browse files
committed
Remove go.mod because I guess I do'nt know how go modules work still
1 parent 3e2cfc0 commit 3c3c85e

File tree

3 files changed

+9
-16
lines changed

3 files changed

+9
-16
lines changed

.github/workflows/go.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,19 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- uses: actions/checkout@v2
15+
with:
16+
fetch-depth: 1
17+
path: go/src/github.com/evanphx/json-patch
1518

1619
- name: Set up Go
1720
uses: actions/setup-go@v2
1821
with:
1922
go-version: 1.15
2023

21-
- name: Setup
22-
run: go get
23-
2424
- name: Test
25-
run: go test -v ./...
25+
run: |
26+
cd /home/runner/work/json-patch/json-patch/go/src/github.com/evanphx/json-patch
27+
go get ./...
28+
go test -v ./...
29+
env:
30+
GOPATH: /home/runner/work/json-patch/json-patch/go

go.mod

Lines changed: 0 additions & 8 deletions
This file was deleted.

go.sum

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)