From 6f944a8964872fc9d615878d94a313ded22d3a8d Mon Sep 17 00:00:00 2001 From: Andrea Date: Wed, 3 Sep 2025 11:41:55 +0200 Subject: [PATCH] chore: add tests workflow --- .gitea/run-tests.yaml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .gitea/run-tests.yaml diff --git a/.gitea/run-tests.yaml b/.gitea/run-tests.yaml new file mode 100644 index 0000000..d36a0a2 --- /dev/null +++ b/.gitea/run-tests.yaml @@ -0,0 +1,14 @@ +name: Run tests +on: + push: + +jobs: + test-project: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v4 + - uses: erlef/setup-beam@v1 + - run: mix deps.get + - run: mix test +