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 4906dc6 commit 69f90b6Copy full SHA for 69f90b6
.github/workflows/tests.yml
@@ -14,17 +14,14 @@ jobs:
14
- name: Checkout
15
uses: actions/checkout@v5
16
17
- - name: Set up Python ${{ matrix.python-version }}
18
- uses: actions/setup-python@v6
+ - name: Install uv and set the Python version
+ uses: astral-sh/setup-uv@v6
19
with:
20
python-version: ${{ matrix.python-version }}
21
+ enable-cache: true
22
23
- name: Install dependencies
- run: |
24
- python -m pip install --upgrade pip
25
- pip install -r requirements.txt
26
- pip install -r test_requirements.txt
+ run: uv sync --locked --dev
27
28
- name: Run tests
29
- run: python -m pytest
30
- continue-on-error: false
+ run: uv run pytest
0 commit comments