Skip to content

Update README.md

Update README.md #33

Workflow file for this run

---
name: molecule
on:
push:
branches:
- main
tags:
- v*.*.*
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
distro:
- ubuntu2404
steps:
- name: checkout the repository
uses: actions/checkout@v2
with:
path: "${{ github.repository }}"
- name: run molecule
uses: robertdebock/molecule-action@2.6.1 # 4.0.6
env:
MOLECULE_DISTRO: ${{ matrix.distro }}
deploy:
needs:
- test
runs-on: ubuntu-latest
steps:
- name: to Ansible Galaxy
if: github.event_name == 'push' || (github.event_name == 'pull_request' && github.head_ref == 'main')
uses: robertdebock/galaxy-action@1.2.0
with:
galaxy_api_key: ${{ secrets.GALAXY_API_KEY }}
git_branch: master