From 6168fb46c4ac631727f2c7451b630b229c5f3c60 Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Thu, 22 May 2025 20:08:03 +0200 Subject: [PATCH] Adding .github/workflows/test.yml --- .github/workflows/test.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml new file mode 100644 index 0000000..9294212 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,23 @@ + +name: Test + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.22' + + - name: Run test + run: make test