Skip to content

Commit

Permalink
remove uv, doesn't support 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
caelean committed May 2, 2024
1 parent 4d64fe6 commit 6ba17cf
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,25 +27,18 @@ jobs:
- name: Install dependencies
run: |
pip install --upgrade pip
pip install uv
uv venv
source .venv/bin/activate
uv pip install -r dev-requirements.txt
uv pip install .
pip install -r dev-requirements.txt
pip install .
- name: Check ruff
run: |
source .venv/bin/activate
ruff check . --exclude tests
ruff format --check .
- name: Test with pytest and report coverage
run: |
source .venv/bin/activate
cd tests
coverage run --branch --source=../ -m pytest
coverage report
cd ..
- name: Enforce module boundaries/dependencies
run:
source .venv/bin/activate
tach check

0 comments on commit 6ba17cf

Please sign in to comment.