diff --git a/.github/workflows/golangci-lint.yaml b/.github/workflows/ci.yaml similarity index 63% rename from .github/workflows/golangci-lint.yaml rename to .github/workflows/ci.yaml index e93f1e9..a5062bf 100644 --- a/.github/workflows/golangci-lint.yaml +++ b/.github/workflows/ci.yaml @@ -6,6 +6,9 @@ on: - master pull_request: +env: + GO_VERSION: '1.22' + permissions: contents: read @@ -22,3 +25,13 @@ jobs: uses: golangci/golangci-lint-action@v6 with: version: v1.60.3 + + tests: + name: go-test + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: ${{ env.GO_VERSION }} + - run: make test