Skip to content

chore: Remove Travis build status from README #34

chore: Remove Travis build status from README

chore: Remove Travis build status from README #34

Workflow file for this run

---
name: CI
# yamllint disable-line rule:truthy
on:
pull_request: {}
push:
branches:
- main
- master
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: yamllint .
ansible-syntax:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- 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