Skip to content

Commit

Permalink
no synced file(s) with dgibbs64/repo-sync (#31)
Browse files Browse the repository at this point in the history
* no synced local '.github/workflows/galaxy.yml' with remote 'ansible/.github/workflows/galaxy.yml'

* no synced local '.github/workflows/molecule.yml' with remote 'ansible/.github/workflows/molecule.yml'
  • Loading branch information
dgibbs64 committed Jun 9, 2024
1 parent 2e5832f commit dae5c47
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 12 deletions.
21 changes: 15 additions & 6 deletions .github/workflows/galaxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,26 +39,35 @@ jobs:
matrix:
distro:
- amazonlinux2023
- debian10
- debian11
- debian12
- fedora37
- fedora38
- fedora39
- fedora40
- opensuseleap15
- rockylinux8
- rockylinux9
- ubuntu1804
- ubuntu2004
- ubuntu2204
- ubuntu2404
ansible_core_version:
- 2.16
- latest
exclude:
- distro: rockylinux8
ansible_core_version: latest
- distro: opensuseleap15
ansible_core_version: latest
steps:
- name: Checkout
uses: actions/checkout@v4

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

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

- name: Secrets to env
uses: oNaiPs/secrets-to-env-action@v1.5
Expand Down
21 changes: 15 additions & 6 deletions .github/workflows/molecule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,26 +40,35 @@ jobs:
matrix:
distro:
- amazonlinux2023
- debian10
- debian11
- debian12
- fedora37
- fedora38
- fedora39
- fedora40
- opensuseleap15
- rockylinux8
- rockylinux9
- ubuntu1804
- ubuntu2004
- ubuntu2204
- ubuntu2404
ansible_core_version:
- 2.16
- latest
exclude:
- distro: rockylinux8
ansible_core_version: latest
- distro: opensuseleap15
ansible_core_version: latest
steps:
- name: Checkout
uses: actions/checkout@v4

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

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

- name: Secrets to env
uses: oNaiPs/secrets-to-env-action@v1.5
Expand Down

0 comments on commit dae5c47

Please sign in to comment.