We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 631068b commit 92d269aCopy full SHA for 92d269a
1 file changed
.github/workflows/testing.yml
@@ -29,13 +29,14 @@ jobs:
29
30
steps:
31
- uses: actions/checkout@v5
32
- - name: Set up Python ${{ matrix.python-version }}
33
- uses: actions/setup-python@v6
+ - name: Install latest version of uv and set up Python ${{ matrix.python-version }}
+ uses: astral-sh/setup-uv@v7
34
with:
35
python-version: ${{ matrix.python-version }}
36
- - name: Install dependencies
37
- run: |
38
- python -m pip install --upgrade pip
39
- pip install -e ".[test]"
+ activate-environment: "true"
+ - name: Install dependencies (including test group)
+ run: uv sync --extra test
+ - name: Display the project's dependency tree (including information on outdated packages)
40
+ run: uv tree --outdated
41
- name: Run Checking Mechanisms
42
run: make check
0 commit comments