Skip to content

Commit

Permalink
Fixing (temporary) powershell test, again
Browse files Browse the repository at this point in the history
  • Loading branch information
bluss committed Sep 18, 2024
1 parent 6138e66 commit 5198786
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -293,11 +293,19 @@ jobs:
working-directory: ${{ env.UV_WORKSPACE }}
run: rustup show

- name: "Build (WIP)"
working-directory: ${{ env.UV_WORKSPACE }}
run: |
cargo build --bin uv --bin uvx
- name: "Test completion"
working-directory: ${{ env.UV_WORKSPACE }}
shell: powershell
run: |
Set-Alias -Name uv -Value ./target/debug/uv
Set-Alias -Name uvx -Value ./target/debug/uvx
(& uv generate-shell-completion powershell) | Write-Host
(& uvx --generate-shell-completion powershell) | Write-Host
(& uv generate-shell-completion powershell) | Out-String | Invoke-Expression
(& uvx --generate-shell-completion powershell) | Out-String | Invoke-Expression
Expand Down

0 comments on commit 5198786

Please sign in to comment.