From 65830f7b37e28f816d52d3b4447c52f1a2beb82b Mon Sep 17 00:00:00 2001 From: Gretchen Miller Date: Wed, 5 Mar 2025 17:56:38 -0800 Subject: [PATCH] fix CI more --- .github/workflows/python-formatting.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-formatting.yml b/.github/workflows/python-formatting.yml index 3105d07..0ee1f92 100644 --- a/.github/workflows/python-formatting.yml +++ b/.github/workflows/python-formatting.yml @@ -20,12 +20,12 @@ jobs: with: python-version: '3.8' - name: Create virtual environment - run: python -m venv venv + run: python -m venv .venv - name: Install ruff run: | - ./venv/bin/pip install --upgrade pip - ./venv/bin/pip install ruff + ./.venv/bin/pip install --upgrade pip + ./.venv/bin/pip install ruff - name: Run formatting check run: make check-format