Commit d0f65a8 1 parent 3bc60b0 commit d0f65a8 Copy full SHA for d0f65a8
File tree 1 file changed +16
-7
lines changed
1 file changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -16,15 +16,17 @@ jobs:
16
16
- name : Checkout
17
17
uses : actions/checkout@v3
18
18
19
+ - name : Install uv
20
+ uses : astral-sh/setup-uv@v5
21
+
19
22
- name : Set up Python
20
- uses : actions/setup-python@v2
21
- with :
22
- python-version : ' 3.x'
23
+ run : uv python install
23
24
24
25
- name : Install dependencies.
26
+ env :
27
+ UV_SYSTEM_PYTHON : 1
25
28
run : |
26
- curl -LsSf https://astral.sh/uv/install.sh | sh
27
- uv -q pip install --system -r requirements.txt
29
+ uv -q pip install -r requirements.txt
28
30
29
31
- name : Run ansible-lint
30
32
run : |
@@ -39,10 +41,17 @@ jobs:
39
41
- name : Checkout
40
42
uses : actions/checkout@v3
41
43
44
+ - name : Install uv
45
+ uses : astral-sh/setup-uv@v5
46
+
47
+ - name : Set up Python
48
+ run : uv python install
49
+
42
50
- name : Install dependencies.
51
+ env :
52
+ UV_SYSTEM_PYTHON : 1
43
53
run : |
44
- curl -LsSf https://astral.sh/uv/install.sh | sh
45
- uv -q pip install --system -r requirements.txt
54
+ uv -q pip install -r requirements.txt
46
55
ansible-galaxy install -r requirements.yml
47
56
48
57
- name : Run molecule
You can’t perform that action at this time.
0 commit comments