Skip to content

Commit

Permalink
Merge branch 'master' into bump-actions-setup-go-v4
Browse files Browse the repository at this point in the history
  • Loading branch information
shogo82148 committed Sep 15, 2023
2 parents 294627b + c25bb8b commit a5b7032
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
go-version: [ "1.18", "1.19", "1.20" ]
go-version: [ "1.19", "1.20", "1.21" ]
runs-on: ${{ matrix.os }}
steps:
- name: checkout
Expand All @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
os: [ "ubuntu-latest", "windows-latest" ]
go-version: [ "1.18", "1.19", "1.20" ]
go-version: [ "1.19", "1.20", "1.21" ]
runs-on: ${{ matrix.os }}
env:
GOARCH: "386"
Expand All @@ -52,7 +52,7 @@ jobs:
- name: setup Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.21"
- name: build
run: |
make ycat/build
Expand All @@ -69,7 +69,7 @@ jobs:
- name: setup Go
uses: actions/setup-go@v4
with:
go-version: "1.20"
go-version: "1.21"
- name: measure coverage
run: |
make cover
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/goccy/go-yaml

go 1.18
go 1.19

require (
github.com/fatih/color v1.10.0
Expand Down

0 comments on commit a5b7032

Please sign in to comment.