mirror of
https://github.com/openshift/community.okd.git
synced 2026-03-27 03:13:08 +00:00
30 lines
604 B
YAML
30 lines
604 B
YAML
---
|
|
name: Linters
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- opened
|
|
- reopened
|
|
- labeled
|
|
- unlabeled
|
|
- synchronize
|
|
branches:
|
|
- main
|
|
- stable-*
|
|
tags:
|
|
- '*'
|
|
jobs:
|
|
linters:
|
|
uses: ansible-network/github_actions/.github/workflows/tox-linters.yml@main
|
|
ansible-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: ansible-network/github_actions/.github/actions/checkout_dependency@main
|
|
|
|
- name: Run ansible-lint
|
|
uses: ansible/ansible-lint@v6.21.0
|