Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Commit

Permalink
CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
marcobellaccini authored Sep 4, 2024
1 parent 32349c5 commit 78178c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,9 @@ jobs:
- name: Pre-req - create and activate venv
run: mkdir /venvtest && python3 -m venv /venvtest && . /venvtest/bin/activate
- name: Pre-req - upgrade pip
run: pip3 install --upgrade pip
run: . /venvtest/bin/activate && pip3 install --upgrade pip
- name: Pre-req - ansible
run: pip3 install ansible
run: . /venvtest/bin/activate && pip3 install ansible

# nanvault tests
- name: Install dependencies
Expand Down

0 comments on commit 78178c3

Please sign in to comment.