From 44421049ae3ac96ff4e7fa377426d29e0c1ab5be Mon Sep 17 00:00:00 2001 From: David Boreham Date: Thu, 6 Apr 2023 07:19:08 -0600 Subject: [PATCH] Try to enable CI Former-commit-id: 0432a4bf29f7055b229d25352713699fe10972e4 --- .gitea/workflows/test.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/workflows/test.yml diff --git a/.gitea/workflows/test.yml b/.gitea/workflows/test.yml new file mode 100644 index 00000000..77dd4c86 --- /dev/null +++ b/.gitea/workflows/test.yml @@ -0,0 +1,14 @@ +name: Tests + +on: + pull_request: + branches: '*' + push: + branches: '*' + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Clone project repository + uses: actions/checkout@v3