Skip to content

Commit 94190b8

Browse files
authored
bump tested Go to 1.16-1.18 (kdomanski#11)
1 parent 84d8c51 commit 94190b8

6 files changed

+6
-2
lines changed

.github/workflows/go.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
go: ['1.15', '1.16']
10+
go: ['1.16', '1.17', '1.18']
1111
steps:
1212

1313
- name: Set up Go ${{ matrix.go }}

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module github.com/kdomanski/iso9660
22

3-
go 1.15
3+
go 1.16
44

55
require github.com/stretchr/testify v1.7.0

image_reader_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build !integration
12
// +build !integration
23

34
package iso9660

image_writer_integration_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build integration
12
// +build integration
23

34
package iso9660

image_writer_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build !integration
12
// +build !integration
23

34
package iso9660

iso9660_test.go

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
//go:build !integration
12
// +build !integration
23

34
package iso9660

0 commit comments

Comments
 (0)