Skip to content

remove yum support

remove yum support #29

Workflow file for this run

---
name: Ansible Galaxy
on:
workflow_dispatch:
push:
paths:
- "README.md"
tags:
- "*"
concurrency:
group: ${{ github.ref_name }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install test dependencies
run: pip3 install yamllint
- name: Run Yamllint
run: |
yamllint .
- name: Run ansible-lint
uses: ansible/[email protected]
molecule:
name: Molecule
needs: lint
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro:
- amazonlinux2023
- debian11
- debian12
- fedora39
- fedora40
- opensuseleap15
- rockylinux8
- rockylinux9
- 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 (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/[email protected]
with:
secrets: "${{ toJSON(secrets) }}"
- name: Run Molecule tests
run: molecule test --all
env:
PY_COLORS: "1"
ANSIBLE_FORCE_COLOR: "1"
MOLECULE_IMAGE: "${{ matrix.distro }}"
Galaxy:
name: Galaxy
runs-on: ubuntu-latest
needs: molecule
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Ansible
run: pip3 install ansible-core
- name: Trigger a new import on Galaxy
run: >-
ansible-galaxy role import --api-key ${{ secrets.GALAXY_API_KEY }}
$(echo ${{ github.repository }} | cut -d/ -f1) $(echo ${{ github.repository }} | cut -d/ -f2)