From da1d3f99eb23cafd4f446e5893ac01908ab639cb Mon Sep 17 00:00:00 2001 From: Christian Burkert Date: Wed, 28 May 2025 11:17:37 +0200 Subject: [PATCH] ci: add CI workflow --- .github/workflows/ci.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 0000000..30e223f --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,18 @@ +name: CI + +on: + pull_request: + push: + +jobs: + ci: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-go@v5 + with: + go-version: stable + - name: Run golangci-lint + uses: golangci/golangci-lint-action@v8 + - name: Run tests + run: go test -race ./...