From 807f1262c5748c540a6af06c4d7e2161fb544aa4 Mon Sep 17 00:00:00 2001 From: Lucas Miller Date: Mon, 19 May 2025 00:53:02 -0400 Subject: [PATCH] Add CI workflow --- .github/workflows/ci.yml | 17 +++++++++++++++++ 1 file changed, 17 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..e78f522 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,17 @@ +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.11' + cache: 'pip' + - name: Install deps + run: | + pip install -e .[dev] + - name: Run tests + run: | + python -m pytest -q