2024-09-05 08:06:45 -04:00
|
|
|
name: "test-windows"
|
2024-08-23 23:58:26 +02:00
|
|
|
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: ./
|
2025-02-09 19:54:13 +01:00
|
|
|
- run: ls
|
|
|
|
- run: uv pip install -r __tests__/fixtures/requirements-txt-project/requirements.txt
|