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 3118ebb commit 39fa1c5Copy full SHA for 39fa1c5
.github/workflows/main.yml
@@ -50,7 +50,7 @@ jobs:
50
mono-version: latest
51
52
- name: Checkout code
53
- uses: actions/checkout@v2
+ uses: actions/checkout@v5
54
55
- name: Setup .NET
56
uses: actions/setup-dotnet@v5
@@ -59,14 +59,17 @@ jobs:
59
8.0.x
60
9.0.x
61
62
- - name: Install the latest version of uv
+ - name: Install uv
63
uses: astral-sh/setup-uv@v6
64
with:
65
architecture: ${{ matrix.os.platform }}
66
python-version: ${{ matrix.python }}
67
activate-environment: true
68
enable-cache: true
69
70
+ - name: Install the project
71
+ run: uv sync --locked --all-extras --dev
72
+
73
- name: Set Python DLL path and PYTHONHOME (non Windows)
74
if: ${{ matrix.os.category != 'windows' }}
75
run: |
0 commit comments