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 4fa65ed commit 1522e42Copy full SHA for 1522e42
.github/workflows/build.yml
@@ -20,11 +20,15 @@ jobs:
20
fetch-depth: 0 # Needed for setuptools_scm to work correctly
21
- name: Install uv
22
uses: astral-sh/setup-uv@v5
23
+
24
+ - name: Set up Python ${{ matrix.python-version }}
25
+ uses: actions/setup-python@v5
26
with:
27
python-version: ${{ matrix.python-version }}
28
+ allow-prereleases: true
29
30
- name: Install the project
- run: uv sync --dev
31
+ run: uv sync --all-extras --dev
32
33
- name: Run tests
34
run: uv run inv pytest --junit --no-pty --base
0 commit comments