From f1f91b79b48cac4dd74f4cb8780f12511c46ce94 Mon Sep 17 00:00:00 2001 From: Cory Jacobsen Date: Fri, 27 Sep 2024 21:03:18 +0000 Subject: [PATCH] chore: add go 1.23 to test matrix --- .github/workflows/test.yaml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 089c34e..d3b9d04 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,7 +11,7 @@ jobs: tests: strategy: matrix: - go-version: [1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x] + go-version: [1.18.x, 1.19.x, 1.20.x, 1.21.x, 1.22.x, 1.23.x] os: [ubuntu-latest] runs-on: ${{ matrix.os }} steps: @@ -20,12 +20,3 @@ jobs: with: go-version: ${{ matrix.go-version }} - run: make ci - golangci: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - path: src/github.com/unrolled/secure - - uses: golangci/golangci-lint-action@v4 - with: - working-directory: src/github.com/unrolled/secure