diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abc7213..77bc376 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ permissions: contents: read jobs: - build-and-test: + test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -22,17 +22,8 @@ jobs: - name: Build run: go build ./... - - name: Test - run: go test ./... -timeout 60s -race - - vet: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - - uses: actions/setup-go@v5 - with: - go-version-file: go.mod - - name: Vet run: go vet ./... + + - name: Test + run: go test ./... -timeout 60s -race