From ca7d82a6e3e36b202d5a6ca37055128b89e4f64a Mon Sep 17 00:00:00 2001 From: Jan Date: Thu, 26 Dec 2024 16:08:05 +0100 Subject: [PATCH] ADDED github testing workflow --- .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..4e59e1b --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,23 @@ +name: Test + +on: [push] + +jobs: + test: + runs-on: ubuntu-latest + services: + dind: + image: docker:23.0-rc-dind-rootless + ports: + - 2375:2375 + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: "1.22" + + - name: Test with Docker + run: go test -v ./... \ No newline at end of file