File tree Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Expand file tree Collapse file tree 2 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 12
12
13
13
jobs :
14
14
check-install :
15
- runs-on : [ubuntu-latest, macos-latest]
16
- steps :
17
- - uses : actions/checkout@v4
18
- with :
19
- path : action
15
+ runs-on : [ubuntu-latest, macos-latest, windows -latest]
16
+ steps :
17
+ - uses : actions/checkout@v4
18
+ with :
19
+ path : action
20
20
21
- - uses : ./action
21
+ - uses : ./action
22
22
23
- - run : uv --version
23
+ - run : uv --version
Original file line number Diff line number Diff line change 11
11
using : composite
12
12
13
13
steps :
14
- - name : Install uv
14
+ - name : Install uv on Linux or macOS
15
15
run : curl -LsSf https://astral.sh/uv/install.sh | bash
16
16
shell : bash
17
+ if : runner.os != 'Windows'
18
+
19
+ - name : Install uv on Windows
20
+ run : irm https://astral.sh/uv/install.ps1 | iex
21
+ shell : pwsh
22
+ if : runner.os == 'Windows'
17
23
18
24
- name : Find uv cache
19
25
run : echo "UV_CACHE=$(uv cache dir)" >>$GITHUB_ENV
You can’t perform that action at this time.
0 commit comments