Skip to content

Commit

Permalink
feat: update Python setup in galaxy.yml
Browse files Browse the repository at this point in the history
- Renamed "Set up Python 3" to "Setup Python 3"
- Added check for latest Python version
- Consolidated duplicate code blocks
  • Loading branch information
dgibbs64 committed Jun 28, 2023
1 parent 16c885c commit 06c1e0c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Python 3
- name: Setup Python 3
uses: actions/setup-python@v4
with:
python-version: "3.x"
check-latest: true

- name: Install test dependencies
run: pip3 install yamllint
Expand Down Expand Up @@ -62,6 +63,9 @@ jobs:

- name: Setup Python 3
uses: actions/setup-python@v4
with:
python-version: "3.x"
check-latest: true

- name: Install test dependencies
run: pip3 install molecule-plugins[docker] jmespath
Expand All @@ -86,7 +90,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Set up Python 3
- name: Setup Python 3
uses: actions/setup-python@v4
with:
python-version: "3.x"
Expand Down

0 comments on commit 06c1e0c

Please sign in to comment.