From 3f1a1739301d5245856bc9b99538e70e1d3ae621 Mon Sep 17 00:00:00 2001 From: Andrea Date: Wed, 3 Sep 2025 11:24:55 +0200 Subject: [PATCH] chore: add tests workflow --- .gitea/workflows/run-tests.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/run-tests.yaml diff --git a/.gitea/workflows/run-tests.yaml b/.gitea/workflows/run-tests.yaml new file mode 100644 index 0000000..db2fb14 --- /dev/null +++ b/.gitea/workflows/run-tests.yaml @@ -0,0 +1,12 @@ +name: Run tests +on: + push: + +jobs: + test-project: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - uses: jiro4989/setup-nim-action@v2 + - run: nimble test \ No newline at end of file