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 659e3e7 commit 31047cdCopy full SHA for 31047cd
.github/workflows/centos.yml
@@ -15,6 +15,7 @@ jobs:
15
matrix:
16
molecule_distro:
17
- centos7
18
+ - centos8
19
mongodb_version:
20
- '4.2'
21
- '4.0'
@@ -27,9 +28,11 @@ jobs:
27
28
uses: actions/checkout@v2
29
- name: Prepare tests
30
run: pip install -r requirements.txt
- - name: Run tests
31
- run: |
32
- molecule test
33
- AUTH_STATE=enabled molecule test
34
- molecule test -s cluster
35
- AUTH_STATE=enabled molecule test -s cluster
+ - name: Run default test
+ run: molecule test
+ - name: Run default test with enabled authentication
+ run: AUTH_STATE=enabled molecule test
+ - name: Run cluster test
36
+ run: molecule test -s cluster
37
+ - name: Run cluster test with enabled authentication
38
+ run: AUTH_STATE=enabled molecule test -s cluster
0 commit comments