Skip to content

correct difference that occurred during the v1.7.11 pull #1

correct difference that occurred during the v1.7.11 pull

correct difference that occurred during the v1.7.11 pull #1

Workflow file for this run

name: Yaml Lint
on:
push:
tags:
- v*
branches:
- master
- release-*
pull_request:
branches:
- master
- release-*
jobs:
yaml-linter:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install yamllint
run: pip install yamllint
- name: Lint YAML files
run: yamllint -c .github/workflows/.yamllint cluster/examples/kubernetes/ --no-warnings