Skip to content

uninstall: first stop the service, then remove env-file #16

uninstall: first stop the service, then remove env-file

uninstall: first stop the service, then remove env-file #16

Workflow file for this run

---
name: CI
# yamllint disable-line rule:truthy
on:
pull_request: {}
push:
branches:
- main
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: yamllint .
ansible-syntax:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Prepare Ansible config for tests
run: printf '[defaults]\nroles_path=../' > ansible.cfg
- name: Ansible syntax check
run: ansible-playbook tests/ci.yml -i tests/inventory --syntax-check