Skip to content

Commit

Permalink
try newer python
Browse files Browse the repository at this point in the history
  • Loading branch information
baszoetekouw committed Jan 21, 2025
1 parent 1083457 commit c11f6d4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/molecule-loadbalancer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,19 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: "ubuntu-24.04"
steps:
- uses: actions/checkout@v2
- uses: "actions/checkout@v2"

- name: Set up Python 3.8
uses: actions/setup-python@v2
- name: "Set up Python 3.12"
uses: "actions/setup-python@v4"
with:
python-version: 3.8
python-version: "3.12"

- name: Installing dependencies
run: pip install jinja2 ansible molecule molecule-docker pytest-testinfra pytest setuptools
- name: "Installing dependencies"
run: |
pip install jinja2 ansible molecule molecule-docker pytest-testinfra pytest setuptools
- name: Run role tests
run: molecule test -s loadbalancer
- name: "Run role tests"
run: |
molecule test -s loadbalancer
1 change: 0 additions & 1 deletion molecule/loadbalancer/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ provisioner:
scenario:
test_sequence:
- dependency
- lint
- cleanup
- destroy
- syntax
Expand Down

0 comments on commit c11f6d4

Please sign in to comment.