fix CI more

This commit is contained in:
Gretchen Miller 2025-03-05 17:56:38 -08:00
parent b3fa9193d1
commit 65830f7b37

View File

@ -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