fix: Exclude storage journal enabled for mongodb 7 or later #12
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
name: Debian | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
python3: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
molecule_distro: | |
- debian9 | |
- debian10 | |
mongodb_version: | |
- '5.0' | |
- '4.4' | |
- '4.2' | |
- '4.0' | |
- '3.6' | |
exclude: | |
- molecule_distro: debian10 | |
mongodb_version: '3.6' | |
- molecule_distro: debian10 | |
mongodb_version: '4.0' | |
env: | |
MONGODB_VERSION: ${{ matrix.mongodb_version }} | |
MOLECULE_DISTRO: ${{ matrix.molecule_distro }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Prepare tests | |
run: pip install -r requirements.txt | |
- name: Run default test | |
run: export "PATH=/home/runner/.local/bin:$PATH" && molecule test | |
env: | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' | |
- name: Run default test with enabled authentication | |
run: export "PATH=/home/runner/.local/bin:$PATH" && AUTH_STATE=enabled molecule test | |
env: | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' | |
- name: Run cluster test | |
run: export "PATH=/home/runner/.local/bin:$PATH" && molecule test -s cluster | |
env: | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' | |
- name: Run cluster test with enabled authentication | |
run: export "PATH=/home/runner/.local/bin:$PATH" && AUTH_STATE=enabled molecule test -s cluster | |
env: | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' |