Skip to content

Commit

Permalink
Fix CI
Browse files Browse the repository at this point in the history
  • Loading branch information
arp242 committed Apr 28, 2024
1 parent 8bdabb2 commit 778e130
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,27 +5,23 @@
"test": {
"strategy": {
"matrix": {
"go-version": ["1.18.x", "1.21.x"],
"go-version": ["1.18.x", "1.22.x"],
"os": ["ubuntu-latest", "macos-latest", "windows-latest"]
}
},
"runs-on": "${{ matrix.os }}",
"steps": [
{
"name": "Install Go",
"uses": "actions/setup-go@v2",
"uses": "actions/setup-go@v5",
"with": {"go-version": "${{ matrix.go-version }}"}
},
{
"name": "Checkout code",
"uses": "actions/checkout@v2"
"uses": "actions/checkout@v4"
},
{
"name": "Test",
"run": "go test -v ./..."
},
{
"name": "Install",
"run": "go install -v ./cmd/toml-test"
}
]
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/toml-lang/toml-test
go 1.18

require (
github.com/BurntSushi/toml v1.3.3-0.20231207130039-4223137ff1f9
github.com/BurntSushi/toml v1.3.3-0.20240103001115-0e879cbdab10
// no_term branch, which doesn't depend on x/term and x/sys
zgo.at/zli v0.0.0-20231011155724-865ee344d4b3
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
github.com/BurntSushi/toml v1.3.3-0.20231207130039-4223137ff1f9 h1:lcDxyXwPxaYMIsFHL6UR/fzQouvVdaKpZh8zZRN+KlA=
github.com/BurntSushi/toml v1.3.3-0.20231207130039-4223137ff1f9/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho=
github.com/BurntSushi/toml v1.3.3-0.20240103001115-0e879cbdab10 h1:HfOzWIEwtJGprgjAGJdf0WSvoTaSU+tb4nIjGn4SKlA=
github.com/BurntSushi/toml v1.3.3-0.20240103001115-0e879cbdab10/go.mod h1:ukJfTF/6rtPPRCnwkur4qwRxa8vTRFBF0uk2lLoLwho=
zgo.at/zli v0.0.0-20231011155724-865ee344d4b3 h1:c6mOqJByLZGs0hmCK0Pr+XuDU6XoNcccUROX/8nPP6g=
zgo.at/zli v0.0.0-20231011155724-865ee344d4b3/go.mod h1:HLAc12TjNGT+VRXr76JnsNE3pbooQtwKWhX+RlDjQ2Y=

0 comments on commit 778e130

Please sign in to comment.