Add support for postgresql_user conn_limit
#8
Workflow file for this run
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: Molecule Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
molecule: | |
name: molecule | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
scenario: | |
- default | |
- create-destroy | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: pip3 install molecule[docker] ansible-core | |
- name: Run molecule | |
run: molecule test -s ${{ matrix.scenario }} | |
env: | |
PY_COLORS: '1' | |
ANSIBLE_FORCE_COLOR: '1' |