From 015bfe2f7686de2ece07fa9b5e62c7997d89062b Mon Sep 17 00:00:00 2001 From: Kevin Lyda Date: Sun, 7 Jan 2024 19:36:10 +0000 Subject: [PATCH] Add vacuum linting script. --- .github/workflows/lint.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 12a1cdbfa..53691a3af 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -34,3 +34,13 @@ jobs: with: args: --timeout=30m version: v1.60 + + - name: Install Vacuum + # See: https://quobix.com/vacuum/installing/ + run: | + curl -fsSL https://quobix.com/scripts/install_vacuum.sh | sh > /dev/null + shell: bash + - name: Run Vacuum + run: | + vacuum lint -d api/webhook.yaml + shell: bash