Skip to content

Commit b1cf141

Browse files
committed
Convert to Go modules
1 parent ffd8fe5 commit b1cf141

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

.github/workflows/push.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
name: Push Event
6+
jobs:
7+
test:
8+
runs-on: ubuntu-latest
9+
strategy:
10+
matrix:
11+
go: [ '1.15' ]
12+
name: Go ${{ matrix.go }} test
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Setup go
16+
uses: actions/setup-go@v1
17+
with:
18+
go-version: ${{ matrix.go }}
19+
- run: go test -v ./...

go.mod

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module github.com/pkg/browser
2+
3+
go 1.14

0 commit comments

Comments
 (0)