Skip to content

Commit 53b8a8c

Browse files
Debug ansible-lint and direnv behavior
1 parent f778b37 commit 53b8a8c

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/test.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,11 @@ jobs:
2323

2424
- name: Install dependencies.
2525
run: |
26-
sudo apt install python3 python3-pip direnv
2726
curl -LsSf https://astral.sh/uv/install.sh | sh
27+
uv -q pip install -r requirements.txt
2828
2929
- name: Run ansible-lint
3030
run: |
31-
direnv allow
3231
ansible-lint
3332
3433
molecule:
@@ -42,10 +41,10 @@ jobs:
4241

4342
- name: Install dependencies.
4443
run: |
45-
sudo apt install python3 python3-pip direnv
4644
curl -LsSf https://astral.sh/uv/install.sh | sh
47-
direnv allow
45+
uv -q pip install -r requirements.txt
4846
ansible-galaxy install -r requirements.yml
4947
5048
- name: Run molecule
51-
run: molecule test -p ${{ matrix.os }}
49+
run: |
50+
molecule test -p ${{ matrix.os }}

0 commit comments

Comments
 (0)