From 769049a131bf5efb44e0cb1b3f167f146b1114b4 Mon Sep 17 00:00:00 2001 From: Guillaume Gomez Date: Tue, 12 Aug 2025 21:13:50 +0200 Subject: [PATCH] Add github actions yml files checker --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e956c937d..7da92a210 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,6 +27,13 @@ jobs: steps: - uses: actions/checkout@v4 + # We check that all github actions workflows have valid syntax + - name: Validate YAML file + uses: raven-actions/actionlint@v2 + with: + files: .github/workflow/* + flags: "-ignore SC2086" # ignore some shellcheck errors + - name: install `just` run: sudo snap install --edge --classic just