Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/validate-yamls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@ on:
workflow_dispatch:

jobs:
validate:
name: Validate YAML Configuration Files
validate-yamls:
runs-on: ubuntu-latest

steps:
Expand All @@ -33,6 +32,11 @@ jobs:
with:
python-version: '3.12'

- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y libcairo2-dev pkg-config

- name: Install uv
uses: astral-sh/setup-uv@v4
with:
Expand Down
Loading