Skip to content

Commit

Permalink
Periodically test the role against the latest version of rustus (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
kysrpex authored May 31, 2023
1 parent 359b2d1 commit eb2bf9a
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/molecule-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
name: Ansible Molecule (latest rustus)

"on":
schedule:
- cron: '30 5 * * 1'

jobs:
molecule:
name: Tests
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
scenario:
- default
steps:
- name: Install Ansible Molecule.
run: |
pip3 install --user molecule molecule-plugins[podman] ansible-core
- name: Check out the codebase.
uses: actions/checkout@v3

- name: Run Ansible Molecule.
run: |
molecule --base-config molecule/base.yml test --scenario-name ${{ matrix.scenario }}
env:
ANSIBLE_FORCE_COLOR: '1'

0 comments on commit eb2bf9a

Please sign in to comment.