Ubuntu-Ansible-Setup/.github/workflows/lint-inventory.yml
2023-04-13 01:33:20 -04:00

29 lines
713 B
YAML

name: Lint Inventory
on:
workflow_call:
workflow_dispatch:
jobs:
build-image:
uses: ./.github/workflows/build-docker.yml
secrets: inherit
lint-inventory:
runs-on: self-hosted
needs: build-image
container:
image: ${{ vars.DOCKER_REGISTRY_URL }}/${{ vars.ANSIBLE_CONTAINER }}:latest
credentials:
username: ${{ secrets.DOCKER_REGISTRY_USER }}
password: ${{ secrets.DOCKER_REGISTRY_PASSWORD }}
steps:
- name: checkout repo
uses: actions/checkout@v3
- name: Lint Inventory
run: |
yamllint -d "{extends: default, rules: {trailing-spaces: {level: warning}, comments: { min-spaces-from-content: 1}}}" ./inventory.yml