Commit 586b816 1 parent 9d453da commit 586b816 Copy full SHA for 586b816
File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 8
8
env :
9
9
ANSIBLE_ROLES_PATH : roles
10
10
ANSIBLE_HASH_BEHAVIOUR : merge
11
- UV_SYSTEM_PYTHON : 1
12
11
13
12
jobs :
14
13
lint :
@@ -23,12 +22,15 @@ jobs:
23
22
- name : Set up Python
24
23
run : uv python install
25
24
26
- - name : Install dependencies.
25
+ - name : Install dependencies
27
26
run : |
27
+ uv -q venv --allow-existing --seed .venv
28
+ . .venv/bin/activate
28
29
uv -q pip install -r requirements.txt
29
30
30
31
- name : Run ansible-lint
31
32
run : |
33
+ . .venv/bin/activate
32
34
ansible-lint
33
35
34
36
molecule :
48
50
49
51
- name : Install dependencies.
50
52
run : |
53
+ uv -q venv --allow-existing --seed .venv
54
+ . .venv/bin/activate
51
55
uv -q pip install -r requirements.txt
52
56
ansible-galaxy install -r requirements.yml
53
57
54
58
- name : Run molecule
55
59
run : |
60
+ . .venv/bin/activate
56
61
molecule test -p ${{ matrix.os }}
You can’t perform that action at this time.
0 commit comments