Skip to content

Commit

Permalink
Merge pull request #221 from evrardjp/monthly-test-of-keepalived
Browse files Browse the repository at this point in the history
Add monthly test of keepalived
  • Loading branch information
evrardjp authored Jul 15, 2022
2 parents 4343967 + fc17049 commit ebbeac6
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/monthly.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
name: Monthly Molecule Test
on:
schedule:
# Run on the 10th of each month at noon.
- cron: '00 12 10 * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ansible: ["latest"]
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
sudo apt remove ansible
sudo apt install tox
- name: Test with molecule using tox
run: |
sudo -H -E tox -e ansible-${{ matrix.ansible }}

0 comments on commit ebbeac6

Please sign in to comment.