From c0c87982b9c4083f9a8b594556d4deed1b2c91ed Mon Sep 17 00:00:00 2001 From: evelynmitchell Date: Thu, 23 Nov 2023 10:41:11 -0700 Subject: [PATCH] added yaml lint --- .github/workflows/lint.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 97aa4732..e04004f1 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -5,6 +5,16 @@ name: Lint on: [push, pull_request] jobs: + yaml-lint: + runs-on: ubuntu-latest + steps: + - name: Check out source repository + uses: actions/checkout@v4 + - name: yaml Lint + uses: ibiqlik/action-yamllint@v3 + with: + file_or_dir: *.yaml + config_file: .yamllint.yml flake8-lint: runs-on: ubuntu-latest name: Lint