Skip to content

ERROR! couldn't resolve module/action 'community.postgresql.postgresq… #163

ERROR! couldn't resolve module/action 'community.postgresql.postgresq…

ERROR! couldn't resolve module/action 'community.postgresql.postgresq… #163

Workflow file for this run

---
#
# Ansible managed
#
name: Ansible Molecule
on:
push:
branches:
- master
pull_request:
schedule:
- cron: '3 2 2 * *'
jobs:
lint:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v4
- name: ansible-lint
uses: ansible-community/ansible-lint-action@main
test:
needs:
- lint
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
config:
- image: "debian"
tag: "latest"
- image: "debian"
tag: "bullseye"
- image: "debian"
tag: "buster"
- image: "enterpriselinux"
tag: "latest"
- image: "fedora"
tag: "38"
- image: "fedora"
tag: "39"
- image: "ubuntu"
tag: "jammy"
steps:
- name: checkout
uses: actions/checkout@v4
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: molecule
run: molecule converge
env:
image: ${{ matrix.config.image }}
tag: ${{ matrix.config.tag }}