-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #221 from evrardjp/monthly-test-of-keepalived
Add monthly test of keepalived
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |