From aff2cf6b0ea891c66791319ebadb8615a33c83b1 Mon Sep 17 00:00:00 2001 From: gwen windflower Date: Sun, 7 Apr 2024 15:31:21 -0500 Subject: [PATCH] Update CI and publish workflows to install requirements AND dev-requirements --- .github/workflows/ci.yml | 1 + .github/workflows/publish.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1aea86d..1096d92 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,6 +23,7 @@ jobs: run: | python3 -m pip install uv uv pip install -r requirements.txt --system + uv pip install -r dev-requirements.txt --system - name: Lint with ruff run: ruff check - name: Test with pytest diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index edec678..17bae33 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -21,6 +21,7 @@ jobs: - name: Install dependencies run: | uv pip install -r requirements.txt --system + uv pip install -r dev-requirements.txt --system - name: Lint code run: ruff check - name: Run tests