mirror of
https://github.com/ansible-collections/kubernetes.core.git
synced 2026-06-09 18:16:09 +00:00
* Adding SonarQube coverage-related info * README updates * Fix all_green_check workflow * Quality Gate fix * Update sonarcloud workflow, update docs * Add sonarcloud job to all_green_check and update docs accordingly
27 lines
518 B
YAML
27 lines
518 B
YAML
---
|
|
name: Linters
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
workflow_call:
|
|
pull_request:
|
|
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: actions/checkout@v4
|
|
- name: run-ansible-lint
|
|
uses: ansible/ansible-lint@main
|
|
with:
|
|
gh_action_ref: "v25.5.0"
|