Skip to content

Commit

Permalink
latest
Browse files Browse the repository at this point in the history
  • Loading branch information
dgibbs64 committed Jun 6, 2024
1 parent 75be01e commit e8b83e6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Install test dependencies
- name: Install test dependencies (specific version)
run: pip3 install ansible-core==${{ matrix.ansible_version }} molecule-plugins[docker] jmespath
if: matrix.ansible_version != 'latest'

- name: Install test dependencies (latest version)
run: pip3 install ansible-core molecule-plugins[docker] jmespath
if: matrix.ansible_version == 'latest'

- name: Secrets to env
uses: oNaiPs/[email protected]
Expand Down

0 comments on commit e8b83e6

Please sign in to comment.