We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4088fb commit 9fcbc8bCopy full SHA for 9fcbc8b
.github/workflows/centos.yml
@@ -0,0 +1,35 @@
1
+name: Test ansible role on CentOS
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ pull_request:
8
9
10
11
+jobs:
12
+ python2:
13
+ runs-on: ubuntu-latest
14
+ container: python:3.6-alpine
15
+ strategy:
16
+ matrix:
17
+ molecule_distro:
18
+ - centos7
19
+ mongodb_version:
20
+ - '4.2'
21
+ - '4.0'
22
+ - '3.6'
23
+ env:
24
+ MONGODB_VERSION: ${{ matrix.mongodb_version }}
25
+ MOLECULE_DISTRO: ${{ matrix.molecule_distro }}
26
+ steps:
27
+ - name: Checkout
28
+ uses: actions/checkout@v2
29
+ - name: Prepare tests
30
+ run:
31
+ - pip install -r requirements.txt
32
+ - name: Run tests
33
34
+ - molecule test
35
+ - AUTH_STATE=enabled molecule test
.travis.yml
0 commit comments