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 ef37193 commit 061ba2aCopy full SHA for 061ba2a
1 file changed
.github/workflows/test.yml
@@ -44,12 +44,9 @@ jobs:
44
- name: Install just (Windows)
45
if: runner.os == 'Windows'
46
run: |
47
- # Download and install just for Windows
48
- $url = "https://github.com/casey/just/releases/latest/download/just-x86_64-pc-windows-msvc.zip"
49
- Invoke-WebRequest -Uri $url -OutFile just.zip
50
- Expand-Archive just.zip -DestinationPath .
51
- Move-Item just.exe C:\Windows\System32\
52
- shell: powershell
+ # Install just using winget (Windows Package Manager)
+ winget install --id Casey.Just --exact --silent
+ shell: pwsh
53
54
- name: Create virtual env
55
0 commit comments