Skip to content

Commit ebbeac6

Browse files
authored
Merge pull request #221 from evrardjp/monthly-test-of-keepalived
Add monthly test of keepalived
2 parents 4343967 + fc17049 commit ebbeac6

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/monthly.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
name: Monthly Molecule Test
3+
on:
4+
schedule:
5+
# Run on the 10th of each month at noon.
6+
- cron: '00 12 10 * *'
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
strategy:
11+
matrix:
12+
ansible: ["latest"]
13+
steps:
14+
- uses: actions/checkout@v2
15+
- name: Install dependencies
16+
run: |
17+
sudo apt remove ansible
18+
sudo apt install tox
19+
- name: Test with molecule using tox
20+
run: |
21+
sudo -H -E tox -e ansible-${{ matrix.ansible }}

0 commit comments

Comments
 (0)