Skip to content

Bump actions/setup-python from 5 to 6 #31

Bump actions/setup-python from 5 to 6

Bump actions/setup-python from 5 to 6 #31

Workflow file for this run

name: Lint YAML
on:
pull_request:
paths:
- "**.yml"
- "**.yaml"
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip yamllint
- name: Lint YAML files
run: yamllint . -f github