Extract correct dir for latest

This commit is contained in:
Kevin Stillhammer 2024-08-24 09:01:13 +02:00
parent 4bab96ca10
commit 5654f20383
No known key found for this signature in database
3 changed files with 2 additions and 2 deletions

29
.github/workflows/test-windows.yml vendored Normal file
View file

@ -0,0 +1,29 @@
name: 'test-windows'
on:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test-default-version:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Should not be on path
run: |
if (!(Get-Command -Name "uv" -ErrorAction SilentlyContinue)) {
exit 0
} else {
exit 1
}
- name: Setup uv
uses: ./
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- run: uv sync
working-directory: __tests__\fixtures\uv-project