From 3bae26aaf620d3058080abd6a906f61e30c8e96c Mon Sep 17 00:00:00 2001 From: Edi Piqoni Date: Sun, 2 Jun 2024 19:22:16 +0200 Subject: [PATCH] tests pipeline --- .github/workflows/test.yml | 19 +++++++++++++++++++ 1 file changed, 19 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..b9fbf07 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,19 @@ +name: Go tests + +on: + pull_request: + branches: [ main ] + push: + branches: [ main ] + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: 1.x + - name: Test + run: go test ./...