We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe6e991 commit 9cfb5beCopy full SHA for 9cfb5be
.github/workflows/test-pytest.yaml
@@ -12,15 +12,18 @@ jobs:
12
steps:
13
- name: Checkout repository
14
uses: actions/checkout@v4
15
-
16
- - name: Install uv and set the python version
17
- uses: astral-sh/setup-uv@v5
+
+ - name: Set up Python
+ uses: actions/setup-python@v4
18
with:
19
- python-version: "3.11"
20
21
- - name: Install the project
22
- run: uv sync --locked --group dev
+ python-version: '3.11'
+ cache: 'pip'
23
+ - name: Install dependencies
+ run: |
24
+ python -m pip install --upgrade pip
25
+ pip install pytest pytest-cov
26
27
- name: Run tests with coverage
28
run: |
29
pytest \
0 commit comments