Skip to content

Release 1.0.3

Release 1.0.3 #13

Workflow file for this run

name: Lint
on:
workflow_dispatch:
pull_request:
branches: ["main"]
jobs:
build:
name: Ansible Lint # Naming the build is important to use it as a status check
runs-on: ubuntu-latest
steps:
- name: Which branch?
shell: bash
run: |
echo "${{ github.head_ref || github.ref_name }}"
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref || github.ref_name }}
- name: Run ansible-lint
uses: ansible/ansible-lint@main