From dbb655eecdd6acc4da0be59bafe346fa33aabce7 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 | 21 +++++++++++++++++++++ 1 file changed, 21 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..e5d0a32 --- /dev/null +++ b/.forgejo/workflows/test.yaml @@ -0,0 +1,21 @@ +name: Test + +on: + push: + branches: + - main + pull_request: + branches: + - main + workflow_call: + + +jobs: + pytest: + runs-on: docker + + steps: + - uses: actions/checkout@v4 + + - run: pip install -r requirements.txt + - run: pytest