From 2e72103b6a8d1ca0478cb8d2aa762076fd80b5b1 Mon Sep 17 00:00:00 2001 From: Slipstream Date: Fri, 13 Jun 2025 00:03:28 -0600 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b9eb78..6016afc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,13 @@ jobs: - name: Checkout code uses: actions/checkout@v4 + - name: Install deps + run: | + python -m venv venv + source venv/bin/activate + pip install --upgrade pip + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + - name: Run Pyright run: pyright