From b45ab6b0a5989757a019ef9b70c827327fc76e6b Mon Sep 17 00:00:00 2001 From: Lucas Miller Date: Mon, 19 May 2025 01:05:51 -0400 Subject: [PATCH] ci: install pytest in workflow --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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..187d2f3 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +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: Install pytest + run: | + pip install pytest + - name: Run tests + run: | + python -m pytest -q