Skip to content

feat(rogue): add a spelling mistake #2

feat(rogue): add a spelling mistake

feat(rogue): add a spelling mistake #2

Workflow file for this run

---
name: "yamllint"
on: # yamllint disable-line rule:truthy
pull_request:
branches: [master]
paths:
- '**.yaml'
- '**.yml'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install yamllint
run: pip install yamllint
- name: Lint YAML files
run: yamllint .