From 8cfe5c6f9b16eeda4a28af0e4a257d877da747fc Mon Sep 17 00:00:00 2001 From: woutervermeer Date: Thu, 26 Mar 2026 08:15:11 +0000 Subject: [PATCH] Add .gitea/workflows/test.yaml --- .gitea/workflows/test.yaml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitea/workflows/test.yaml diff --git a/.gitea/workflows/test.yaml b/.gitea/workflows/test.yaml new file mode 100644 index 0000000..8e2eb60 --- /dev/null +++ b/.gitea/workflows/test.yaml @@ -0,0 +1,17 @@ +name: Gitea Test. +run-name: ${{ gitea.actor }} +on: + push: + branches: + - pre-prod + pull_request: + +jobs: + tests: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + + - name: test + run: make test \ No newline at end of file