We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 482155c commit 30bb2f8Copy full SHA for 30bb2f8
.github/workflows/ci.yml
@@ -2,20 +2,19 @@ name: ci
2
3
on:
4
push:
5
- branches: [ "main" ]
+ branches: ["main"]
6
pull_request:
7
8
jobs:
9
-
10
test:
11
runs-on: ubuntu-latest
12
steps:
13
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v4
14
15
- - name: Set up Go
16
- uses: actions/setup-go@v4
17
- with:
18
- go-version: '1.24.x'
+ - name: Set up Go
+ uses: actions/setup-go@v6
+ with:
+ go-version: "1.25"
19
20
- - name: Test
21
- run: go test -v ./...
+ - name: Test
+ run: go test -v ./...
go.mod
@@ -1,6 +1,6 @@
1
module github.com/qpoint-io/rulekit
-go 1.24.3
+go 1.25.1
require (
github.com/hashicorp/go-multierror v1.1.1
0 commit comments