Skip to content

docs: add description of prosody_certificate_dir var #85

docs: add description of prosody_certificate_dir var

docs: add description of prosody_certificate_dir var #85

Workflow file for this run

---
name: CI
'on':
pull_request:
push:
branches:
- master
- devel
schedule:
- cron: '30 1 * * 3'
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Check out the codebase
uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/[email protected]
with:
python-version: '3.x'
- name: Install test dependencies
run: |
pip install -r requirements.txt
- name: Lint code
run: |
yamllint .
ansible-lint .
molecule:
name: Molecule
runs-on: ubuntu-latest
defaults:
run:
working-directory: "${{ github.repository }}"
needs:
- lint
strategy:
fail-fast: false
steps:
- name: Check out the codebase
uses: actions/checkout@v4
with:
path: "${{ github.repository }}"
- name: Set up Python 3
uses: actions/[email protected]
with:
python-version: '3.x'
- name: Install test dependencies
run: |
pip install -r requirements.txt
- name: Run Molecule tests
run: |
molecule test
env:
ANSIBLE_FORCE_COLOR: '1'
ANSIBLE_VERBOSITY: '2'
MOLECULE_DEBUG: '1'
# MOLECULE_DISTRO: "${{ matrix.distro }}"
PY_COLORS: '1'
galaxy:
name: Galaxy
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: galaxy
uses: robertdebock/[email protected]
with:
galaxy_api_key: ${{ secrets.galaxy_api_key }}
needs:
- lint
- molecule
if:
github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/')