From 06cfa7b7993673f70e8a6004a05ffa2af8a37197 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Fri, 28 Nov 2025 17:34:57 +0100 Subject: [PATCH] Add a GitHub Action to run pytest --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..c5096e7 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,8 @@ +name: ci +on: [pull_request, push] +jobs: + pytest: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v6 + - run: pipx run pytest --doctest-modules