diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml deleted file mode 100644 index a06d728c..00000000 --- a/.github/workflows/go.yml +++ /dev/null @@ -1,24 +0,0 @@ -on: - push: - branches: - - master - -name: Test -jobs: - test: - strategy: - matrix: - go-version: [1.24.x, 1.25.x] - os: [ubuntu-latest] - runs-on: ${{ matrix.os }} - steps: - - name: Checkout code - uses: actions/checkout@v6 - - - name: Install Go - uses: actions/setup-go@v6 - with: - go-version: ${{ matrix.go-version }} - - - name: Test - run: go test -race ./... diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 2ba016a8..f0c6566a 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -8,7 +8,7 @@ jobs: test: strategy: matrix: - go-version: [1.24.x, 1.25.x] + go-version: [1.25.x, 1.26.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: @@ -36,7 +36,7 @@ jobs: - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: - go-version: 1.24.x + go-version: 1.25.x - name: golangci-lint uses: golangci/golangci-lint-action@v9 with: diff --git a/go.mod b/go.mod index 92fb3d09..38be8b5a 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/go-playground/validator/v10 -go 1.24.0 +go 1.25.0 require ( github.com/gabriel-vasile/mimetype v1.4.13