From 628c338a9a63e54926bc66b280b978cc595f9736 Mon Sep 17 00:00:00 2001 From: Keegan Carruthers-Smith Date: Thu, 2 Apr 2026 15:08:19 +0200 Subject: [PATCH] add go test github workflow --- .github/workflows/ci.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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..08b5312 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,23 @@ +name: CI + +on: + push: + branches: + - master + pull_request: + workflow_dispatch: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v4 + + - name: setup go + uses: actions/setup-go@v5 + with: + go-version-file: go.mod + + - name: test + run: go test ./...