From 9b41b5b59b5418a75d63d9f7a2465354d1a8280a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?JeffMint=F0=9F=9A=80?= <122024815+Minty-cyber@users.noreply.github.com> Date: Wed, 13 Nov 2024 10:37:21 +0000 Subject: [PATCH] =?UTF-8?q?=E2=99=BB=EF=B8=8FUpdate=20CI.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CI.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 54dffa1..322feee 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -19,15 +19,19 @@ jobs: with: python-version: '3.12' + + - name: Install UV package manager + run: | + python -m pip install uv + - name: Install dependencies run: | - python -m pip install --upgrade pip - python -m pip install -r requirements.txt + uv pip install -r requirements.txt - - name: Install dev depenecies + - name: Install dev dependencies run: | - python -m pip install black flake8 + uv add black flake8 - name: Run flake8 linting run: flake8 .