From d330eb6f525e6747c85a5061d73029883b3ced1e Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Sun, 2 Feb 2025 18:44:29 +0100 Subject: [PATCH] chore(ci): add unit-test workflow --- .gitea/workflows/unit-tests.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .gitea/workflows/unit-tests.yaml diff --git a/.gitea/workflows/unit-tests.yaml b/.gitea/workflows/unit-tests.yaml new file mode 100644 index 0000000..321e686 --- /dev/null +++ b/.gitea/workflows/unit-tests.yaml @@ -0,0 +1,29 @@ +name: Run unit tests + +on: + pull_request: + branches: + - '*' + types: [ "opened", "reopened", "synchronize" ] + push: + branches: + - '*' + workflow_dispatch: {} + +jobs: + cluster: + container: + image: docker.io/library/golang:1.23.5 + runs-on: + - docker + steps: + - name: Install tooling + run: | + apt update --yes + apt upgrade --ye s + apt install git npm + - env: + GOPROXY: ${{ vars.GOPROXY }} + GONOSUMDB: ${{ vars.GONOSUMDB }} + name: Execute containerized unit test + run: make test