Skip to content

Commit b3cf61a

Browse files
authored
Merge pull request opencontainers#67 from stevvooe/update-go
build: add latest versions of go to test matrix
2 parents 7dfe611 + e0313d7 commit b3cf61a

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

.github/workflows/test.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ jobs:
44
test:
55
strategy:
66
matrix:
7-
go-version: [1.14.x, 1.15.x]
7+
go-version: [1.14.x, 1.15.x, 1.16.x, 1.17.x]
88
platform: [ubuntu-latest, windows-latest]
99
runs-on: ${{ matrix.platform }}
1010
steps:
11-
- name: Install Go
12-
uses: actions/setup-go@v1
13-
with:
14-
go-version: ${{ matrix.go-version }}
15-
- name: Checkout code
16-
uses: actions/checkout@v2
17-
- name: Test
18-
run: go test -v ./...
19-
- name: Test Blake3
20-
run: go test -v ./...
21-
working-directory: blake3
11+
- name: Install Go
12+
uses: actions/setup-go@v2
13+
with:
14+
go-version: ${{ matrix.go-version }}
15+
- name: Checkout code
16+
uses: actions/checkout@v2
17+
- name: Test
18+
run: go test -v ./...
19+
- name: Test Blake3
20+
run: go test -v ./...
21+
working-directory: blake3

blake3/go.sum

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
github.com/zeebo/assert v1.1.0/go.mod h1:Pq9JiuJQpG8JLJdtkwrJESF0Foym2/D9XMU5ciN/wJ0=
2+
github.com/zeebo/blake3 v0.1.1 h1:Nbsts7DdKThRHHd+YNlqiGlRqGEF2bE2eXN+xQ1hsEs=
3+
github.com/zeebo/blake3 v0.1.1/go.mod h1:G9pM4qQwjRzF1/v7+vabMj/c5mWpGZ2Wzo3Eb4z0pb4=
4+
github.com/zeebo/pcg v1.0.0/go.mod h1:09F0S9iiKrwn9rlI5yjLkmrug154/YRW6KnnXVDM/l4=
5+
golang.org/x/sys v0.0.0-20201014080544-cc95f250f6bc h1:HVFDs9bKvTxP6bh1Rj9MCSo+UmafQtI8ZWDPVwVk9g4=
6+
golang.org/x/sys v0.0.0-20201014080544-cc95f250f6bc/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=

0 commit comments

Comments
 (0)