From 00f70988d5266e0feda7b10071c124ebbef49799 Mon Sep 17 00:00:00 2001 From: francis Date: Fri, 5 Apr 2024 20:13:56 +0200 Subject: [PATCH] chore: action test script --- .github/workflows/tests.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/tests.yaml diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml new file mode 100644 index 00000000..ba22484f --- /dev/null +++ b/.github/workflows/tests.yaml @@ -0,0 +1,16 @@ +name: backend-tests + +on: + push: + branches: [main, development, services] + pull_request: + branches: [main, development] + workflow_dispatch: + +jobs: + test: + runs-on: self-hosted + steps: + - uses: actions/checkout@v4 + - name: Run tests + run: ./test.sh