Skip to content

Commit

Permalink
Remove go.mod because I guess I do'nt know how go modules work still
Browse files Browse the repository at this point in the history
  • Loading branch information
evanphx committed Jun 4, 2021
1 parent 3e2cfc0 commit 3c3c85e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 16 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
path: go/src/github.com/evanphx/json-patch

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15

- name: Setup
run: go get

- name: Test
run: go test -v ./...
run: |
cd /home/runner/work/json-patch/json-patch/go/src/github.com/evanphx/json-patch
go get ./...
go test -v ./...
env:
GOPATH: /home/runner/work/json-patch/json-patch/go
8 changes: 0 additions & 8 deletions go.mod

This file was deleted.

4 changes: 0 additions & 4 deletions go.sum

This file was deleted.

0 comments on commit 3c3c85e

Please sign in to comment.