Skip to content

Commit 8bc6224

Browse files
committed
Clarity and using ref for simplicity
1 parent 60abe70 commit 8bc6224

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/meta-test.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,38 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v5
10+
with:
11+
ref: update-create-virtualenv
12+
1013
- uses: astral-sh/setup-uv@v6
14+
1115
- uses: ./actions/create-virtualenv
16+
name: use uv implicitly
1217
with:
1318
venv: with_uv_implicit
19+
1420
- uses: ./actions/create-virtualenv
21+
name: use uv explicitly
1522
with:
1623
venv: with_uv_explicit
24+
use_uv: 'true'
1725

1826
TEST-CREATE-VIRTUALENV-WITHOUT-UV:
1927
runs-on: ubuntu-latest
2028
steps:
2129
- uses: actions/checkout@v5
30+
with:
31+
ref: update-create-virtualenv
2232

2333
- uses: ./actions/create-virtualenv
34+
name: use virtualenv implicitly
2435
with:
2536
venv: uv_unavailable
2637

2738
- uses: astral-sh/setup-uv@v6
2839

2940
- uses: ./actions/create-virtualenv
41+
name: use virtualenv explicitly
3042
with:
3143
venv: without_uv
3244
use_uv: 'false'

0 commit comments

Comments
 (0)