From abc11fb0ced46d2a7e68cf84d0d48473fb60c495 Mon Sep 17 00:00:00 2001 From: Quantum Date: Wed, 30 Oct 2024 02:06:05 -0400 Subject: [PATCH] Run python tests on CI --- .github/workflows/python.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/python.yml diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml new file mode 100644 index 0000000..6064d9a --- /dev/null +++ b/.github/workflows/python.yml @@ -0,0 +1,15 @@ +name: Run Python tests +on: + push: + pull_request: +jobs: + amd64: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Set up Python 3.11 + uses: actions/setup-python@v3 + with: + python-version: '3.11' + - name: Run Python unit tests + run: python -m unittest discover .