From 916963617bd3a222b5d0e60399061f19d638e268 Mon Sep 17 00:00:00 2001 From: Alex Bucknall Date: Thu, 28 Aug 2025 20:15:23 +0100 Subject: [PATCH] chore: add step to install dev deps in workflow --- .github/workflows/update-notecard-schema.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/update-notecard-schema.yml b/.github/workflows/update-notecard-schema.yml index 4861f79..461ec67 100644 --- a/.github/workflows/update-notecard-schema.yml +++ b/.github/workflows/update-notecard-schema.yml @@ -23,6 +23,10 @@ jobs: python -m pip install --upgrade pip pip install pipenv + - name: Install dependencies + run: | + pipenv install --dev + - name: Fetch schemas and generate Fluent API run: | echo "Updating from upstream commit: ${{ inputs.upstream_commit }}"