From afd7cc4ef07ad019765c17ea59cf92a19605817d Mon Sep 17 00:00:00 2001 From: "D. Scott Boggs" Date: Sun, 1 Jun 2025 12:41:36 -0400 Subject: [PATCH] Add test CI job --- .forgejo/workflows/run-tests.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .forgejo/workflows/run-tests.yml diff --git a/.forgejo/workflows/run-tests.yml b/.forgejo/workflows/run-tests.yml new file mode 100644 index 0000000..6d6633c --- /dev/null +++ b/.forgejo/workflows/run-tests.yml @@ -0,0 +1,17 @@ +on: [push] +jobs: + run-tests: + runs-on: docker + container: + image: python:alpine + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ forgejo.ref_head }} + sparse-checkout: | + roc_fnb + run: | + pip install . + python -m pytest --capture no + +