Skip to content

Commit

Permalink
Fix installing python deps, provide env vars to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bkabrda committed Jul 12, 2024
1 parent 6de1141 commit 4c9aae2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
uses: actions/checkout@v4
- name: Run ansible-lint
run: |
python -m pip install --upgrade pip
pip install -r requirements-testing.txt
ansible-lint -v
molecule:
Expand All @@ -20,8 +21,13 @@ jobs:
uses: actions/checkout@v4
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-testing.txt
- name: Run molecule
env:
TAS_SINGLE_NODE_REGISTRY_USERNAME: ${{ secrets.TAS_SINGLE_NODE_REGISTRY_USERNAME }}
TAS_SINGLE_NODE_REGISTRY_PASSWORD: ${{ secrets.TAS_SINGLE_NODE_REGISTRY_PASSWORD }}
TESTING_FARM_API_TOKEN: ${{ secrets.TESTING_FARM_API_TOKEN }}
run: |
molecule converge --scenario-name default
- name: Destroy molecule infrastructure
Expand Down

0 comments on commit 4c9aae2

Please sign in to comment.