Skip to content

go version 1.23.4 update #345

go version 1.23.4 update

go version 1.23.4 update #345

Workflow file for this run

---
name: Ansible Lint # feel free to pick your own name
on: # yamllint disable-line rule:truthy
# Run CI against all pushes (direct commits, also merged PRs), Pull Requests
push:
branches: [main]
paths:
- 'roles/**'
pull_request:
# The branches below must be a subset of the branches above
branches: [main]
paths:
- 'roles/**'
jobs:
ansible-lint:
runs-on: ubuntu-latest
steps:
# Important: This sets up your GITHUB_WORKSPACE environment variable
- uses: actions/checkout@v4
- name: Lint Ansible Playbook
uses: ansible/ansible-lint@main
with:
setup_python: "true"