Skip to content

don't run installer again after we restored the backup #117

don't run installer again after we restored the backup

don't run installer again after we restored the backup #117

Workflow file for this run

name: CI
on: [push, pull_request]
env:
COLORTERM: 'yes'
TERM: 'xterm-256color'
PYTEST_ADDOPTS: '--color=yes'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install dependencies
run: pip install --upgrade ansible-core ansible-lint yamllint
- name: ansible-playbook --syntax-check
run: ansible-playbook --syntax-check satellite-clone-playbook.yml | grep -v '^$$'
- name: yamllint
run: yamllint -f parsable roles
- name: ansible-lint
run: ansible-lint -v roles/*