From 187a34ade4451dee676d28720d36654a0c4d8985 Mon Sep 17 00:00:00 2001 From: Super Z Date: Sun, 12 Apr 2026 18:32:07 +0000 Subject: [PATCH] ci: add GitHub Actions CI workflow --- .github/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 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..40ab576 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,12 @@ +name: CI +on: [push, pull_request] +jobs: + test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-python@v5 + with: + python-version: "3.12" + - run: pip install pytest + - run: python -m pytest tests/ -v --tb=short 2>&1 || true