Skip to content

⬆️ Bump actions/setup-python from 5 to 6 #11

⬆️ Bump actions/setup-python from 5 to 6

⬆️ Bump actions/setup-python from 5 to 6 #11

Workflow file for this run

---
name: YAML Lint
on:
push:
branches: [main]
paths:
- '**/*.yml'
- '**/*.yaml'
pull_request:
branches: [main]
paths:
- '**/*.yml'
- '**/*.yaml'
jobs:
yamllint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.x"
- name: Install yamllint
run: pip install yamllint
- name: Run yamllint
run: yamllint .