Skip to content

Commit 9cfb5be

Browse files
committed
no uv
1 parent fe6e991 commit 9cfb5be

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

.github/workflows/test-pytest.yaml

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,18 @@ jobs:
1212
steps:
1313
- name: Checkout repository
1414
uses: actions/checkout@v4
15-
16-
- name: Install uv and set the python version
17-
uses: astral-sh/setup-uv@v5
15+
16+
- name: Set up Python
17+
uses: actions/setup-python@v4
1818
with:
19-
python-version: "3.11"
20-
21-
- name: Install the project
22-
run: uv sync --locked --group dev
19+
python-version: '3.11'
20+
cache: 'pip'
2321

22+
- name: Install dependencies
23+
run: |
24+
python -m pip install --upgrade pip
25+
pip install pytest pytest-cov
26+
2427
- name: Run tests with coverage
2528
run: |
2629
pytest \

0 commit comments

Comments
 (0)