From e9f1f3fc62b007d80a6e1d225b1871ea985e97a6 Mon Sep 17 00:00:00 2001 From: Ondrej Novak Date: Sat, 21 Feb 2026 23:25:54 +0100 Subject: [PATCH] run tests on ci Signed-off-by: Ondrej Novak --- .forgejo/workflows/test.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .forgejo/workflows/test.yaml diff --git a/.forgejo/workflows/test.yaml b/.forgejo/workflows/test.yaml new file mode 100644 index 0000000..01e6118 --- /dev/null +++ b/.forgejo/workflows/test.yaml @@ -0,0 +1,19 @@ +name: Run tests +on: [push] + + +jobs: + test: + runs-on: alpine + steps: + - name: install git + shell: sh + run: apk add git + - name: checkout code + uses: actions/checkout@v4 + - name: install cargo + shell: sh + run: apk add cargo + - name: execute tests + shell: sh + run: cargo test