From b2f36be3146d541e5c8f0eaf289a0838dff44b08 Mon Sep 17 00:00:00 2001 From: Andrea Date: Tue, 9 Sep 2025 09:32:58 +0200 Subject: [PATCH] chore: add github actions --- .github/workflows/run-tests.yaml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/run-tests.yaml diff --git a/.github/workflows/run-tests.yaml b/.github/workflows/run-tests.yaml new file mode 100644 index 0000000..268f78a --- /dev/null +++ b/.github/workflows/run-tests.yaml @@ -0,0 +1,16 @@ +name: Run tests +on: + push: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - name: Check out repository code + uses: actions/checkout@v5 + + - name: Setup nim + uses: jiro4989/setup-nim-action@v2 + + - name: Run tests + run: nimble test \ No newline at end of file