From afe29ad80d63a8a6c735f26aff0202016eb76ba8 Mon Sep 17 00:00:00 2001 From: polyfloyd Date: Sun, 23 Mar 2025 14:05:06 +0100 Subject: [PATCH] Add forgejo test job --- .forgejo/workflows/test.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 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..264e8ad --- /dev/null +++ b/.forgejo/workflows/test.yaml @@ -0,0 +1,20 @@ +name: Test + +on: + push: + branches: + - main + pull_request: + branches: + - main + workflow_call: + + +jobs: + pytest: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: pytest