From 8833941cbc44f083348a55b4cb5009316ab18881 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 10 Jun 2024 16:22:14 +0200 Subject: [PATCH] Revert "Add Shellcheck support via GitHub Actions" --- .github/workflows/shellcheck.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/shellcheck.yml diff --git a/.github/workflows/shellcheck.yml b/.github/workflows/shellcheck.yml deleted file mode 100644 index 2abc731..0000000 --- a/.github/workflows/shellcheck.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Run ShellCheck - -on: - push: - branches: - - '*' # Run on all branches - pull_request: - branches: - - '*' # Run on all branches - -jobs: - shellcheck: - name: Run ShellCheck - runs-on: ubuntu-latest - - steps: - - name: Checkout code - uses: actions/checkout@v3 - - - name: Install ShellCheck - run: sudo apt-get install -y shellcheck - - - name: Run ShellCheck - run: | - # Find all shell scripts and run shellcheck - find . -name "*.sh" -print0 | xargs -0 shellcheck -