setup-uv/.github/workflows/test-windows.yml

30 lines
659 B
YAML
Raw Normal View History

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:59:55 +01:00
with:
python-version: "3.13"
2025-02-09 19:54:13 +01:00
- run: ls
- run: uv pip install -r __tests__/fixtures/requirements-txt-project/requirements.txt