Skip to content

Switching to YAML templates #213

Switching to YAML templates

Switching to YAML templates #213

Workflow file for this run

---
name: "YAMLLint"
on:
push:
pull_request:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:
permissions: {}
jobs:
check:
name: Check with YAMLLint
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Install YAMLLint
run: sudo pip install yamllint
- name: Run YAMLLint
run: "yamllint -d '{extends: relaxed, rules: {line-length: disable, trailing-spaces: disable}}' ."