From 1cb3fc3d1427c389865828dc561f403a222f85ba Mon Sep 17 00:00:00 2001 From: Niklas Ye Date: Fri, 31 Jul 2026 07:29:00 +0200 Subject: [PATCH] ci: check every push and pull request The release workflow gates a tag, which is the last possible moment: a commit that breaks the suite stays green on main until somebody decides to publish. Runs go vet and go test on pushes to main and on pull requests. push is scoped to main so a branch pushed as part of a pull request is not checked twice, and runs for the same ref cancel each other. --- .github/workflows/ci.yml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..83294e9 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,32 @@ +name: CI + +# The release workflow gates a tag, which is late: a broken commit sits green +# until somebody decides to publish. This runs the same checks on the way in. +# +# push is scoped to main so that a branch pushed as part of a pull request is +# not checked twice. +on: + push: + branches: [main] + pull_request: + +# A rapid series of pushes only needs the last one checked. +concurrency: + group: ci-${{ github.ref }} + cancel-in-progress: true + +jobs: + test: + 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 ./...