Skip to content

Commit

Permalink
Create go.mod for wpt-metadata (#64)
Browse files Browse the repository at this point in the history
* create go.mod

* remove go path

* Switch to go 1.13 and go mod tidy

Co-authored-by: Robert Ma <[email protected]>
  • Loading branch information
KyleJu and Hexcles authored Jan 14, 2020
1 parent 3c980eb commit 53b7f4a
Show file tree
Hide file tree
Showing 3 changed files with 358 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,9 @@ jobs:
runs-on: ubuntu-18.04
steps:
- uses: actions/setup-go@v1
- uses: actions/checkout@v1
with:
go-version: 1.11.x
- name: Set GOPATH
# temporary fix
# see https://github.com/actions/setup-go/issues/12
# see https://github.com/actions/setup-go/issues/14
run: |
echo "##[set-env name=GOPATH;]$(dirname $GITHUB_WORKSPACE)"
echo "##[add-path]$(dirname $GITHUB_WORKSPACE)/bin"
go-version: 1.13.x
- uses: actions/checkout@v1
- name: Get dependencies
run: |
go get -v -t -d ./...
Expand Down
10 changes: 10 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module github.com/web-platform-tests/wpt-metadata

go 1.13

require (
github.com/deckarep/golang-set v1.7.1
github.com/go-yaml/yaml v2.1.0+incompatible
github.com/stretchr/testify v1.4.0
github.com/web-platform-tests/wpt.fyi v0.0.0-20200114204746-006d7124ca21
)
Loading

0 comments on commit 53b7f4a

Please sign in to comment.