Move pg_hba.conf to configuration directory #98
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 | ||
on: | ||
pull_request: | ||
branches: | ||
- master | ||
schedule: | ||
- cron: "0 5 * * 5" | ||
defaults: | ||
run: | ||
working-directory: 'nephelaiio.postgresql' | ||
jobs: | ||
molecule: | ||
name: molecule | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
scenario: | ||
- deploy | ||
- stop | ||
- mask | ||
- databases | ||
- configure | ||
- initdb | ||
image: | ||
- name: ubuntu2204 | ||
command: /lib/systemd/systemd | ||
- name: ubuntu2004 | ||
command: /lib/systemd/systemd | ||
- name: debian12 | ||
command: /lib/systemd/systemd | ||
- name: debian11 | ||
command: /lib/systemd/systemd | ||
- name: rockylinux9 | ||
command: /usr/lib/systemd/systemd | ||
exclude: | ||
- scenario: initdb | ||
image.name: rockylinux9 | ||
Check failure on line 40 in .github/workflows/molecule.yml GitHub Actions / moleculeInvalid workflow file
|
||
image.command: /usr/lib/systemd/systemd | ||
steps: | ||
- name: Check out the codebase | ||
uses: actions/checkout@v4 | ||
with: | ||
path: 'nephelaiio.postgresql' | ||
- name: Set up python 3 | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: '3.x' | ||
- name: Update ubuntu repositories | ||
run: sudo apt-get update | ||
- name: Install make | ||
run: sudo apt-get install -y make | ||
- name: Install dependencies | ||
run: make install | ||
- name: Debug test environment | ||
run: make debug | ||
- name: Run molecule tests. | ||
run: make test | ||
env: | ||
PY_COLORS: '1' | ||
ANSIBLE_FORCE_COLOR: '1' | ||
MOLECULE_DOCKER_IMAGE: ${{ matrix.image.name }} | ||
MOLECULE_DOCKER_COMMAND: ${{ matrix.image.command }} | ||
MOLECULE_SCENARIO: ${{ matrix.scenario }} |