From bd670919110bea53b07a0648ee88c2a73a52a3a6 Mon Sep 17 00:00:00 2001 From: humocs-man <251756307+humocs-man@users.noreply.github.com> Date: Fri, 13 Mar 2026 11:16:40 +0100 Subject: [PATCH] Delete .github/workflows/validate-justfiles.yml --- .github/workflows/validate-justfiles.yml | 40 ------------------------ 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/validate-justfiles.yml diff --git a/.github/workflows/validate-justfiles.yml b/.github/workflows/validate-justfiles.yml deleted file mode 100644 index 348a10b..0000000 --- a/.github/workflows/validate-justfiles.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Validate Justfiles -permissions: - contents: read - -on: - pull_request: - paths: - - "custom/ujust/**" - - "Justfile" -jobs: - validate: - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v5 - - - name: Install just - uses: extractions/setup-just@dd310ad5a97d8e7b41793f8ef055398d51ad4de6 # v2 - - - name: Validate Justfiles - shell: bash - run: | - echo "Validating justfiles in custom/ujust/ directory..." - - set -xeuo pipefail - - # Validate root Justfile - echo "::group:: Validating Justfile" - just --unstable --fmt --check -f Justfile - echo "::endgroup::" - - # Validate custom ujust files - find "custom/ujust" -iname '*.just' -print0 | \ - while IFS= read -r -d '' justfile ; do \ - echo "::group:: ===$(basename "$justfile")===" - just --unstable --fmt --check -f "$justfile" - echo "::endgroup::" - done - - echo "All justfiles are valid"