From 73794893a6466af7ed2618b1c30926b89d042ba5 Mon Sep 17 00:00:00 2001 From: Laela Zorana Date: Sat, 27 Jun 2026 23:10:41 -0500 Subject: [PATCH] Add CI: run the test suite on every push and PR Runs python -m pytest on Python 3.11 via GitHub Actions so the suite is verified automatically on each change. --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..d600a8b --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +name: CI + +on: + push: + branches: [main] + pull_request: + +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + - uses: actions/setup-python@v6 + with: + python-version: "3.11" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install -r requirements.txt pytest + - name: Run tests + run: python -m pytest -q