From f3045d4bd5273e89708ea3b51c4898787eb4468d Mon Sep 17 00:00:00 2001 From: Michael Tews Date: Tue, 24 Mar 2026 12:17:36 +0100 Subject: ci: adds job running tests against container --- .github/workflows/test.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 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..5919a39 --- /dev/null +++ b/.github/workflows/test.yml @@ -0,0 +1,24 @@ +name: test + +on: + push: + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Check out repository + uses: actions/checkout@v5 + + - name: Set up Go + uses: actions/setup-go@v6 + with: + go-version-file: go.mod + cache: true + + - name: Install Mage + run: go install github.com/magefile/mage@latest + + - name: Run tests + run: mage testAgainstContainer -- cgit v1.0