Allow overriding "pm" in PHP-FPM's pool config #471
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: ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
python-version: ['3.x'] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
cache: 'pip' | |
- run: pip install -r requirements.txt | |
- uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-galaxy-${{ hashFiles('galaxy.yml') }} | |
- run: ansible-galaxy install -r galaxy.yml | |
- name: Check playbook syntax | |
run: | | |
ansible-playbook --syntax-check -e env=development deploy.yml | |
ansible-playbook --syntax-check -e env=development dev.yml | |
ansible-playbook --syntax-check -e env=development server.yml | |
ansible-playbook --syntax-check -e env=development rollback.yml | |
ansible-playbook --syntax-check -e xdebug_tunnel_inventory_host=1 xdebug-tunnel.yml |