From d464534e7c05f8deee139cf0273e2981de1f503b Mon Sep 17 00:00:00 2001 From: HAHWUL Date: Tue, 2 Jan 2024 00:50:07 +0900 Subject: [PATCH] Add YAML lint check --- .github/workflows/yaml-lint.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/yaml-lint.yml diff --git a/.github/workflows/yaml-lint.yml b/.github/workflows/yaml-lint.yml new file mode 100644 index 0000000..d1655be --- /dev/null +++ b/.github/workflows/yaml-lint.yml @@ -0,0 +1,14 @@ +--- + name: YAML Lint + on: + pull_request: + branches: [ "main" ] + jobs: + lintAllTheThings: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: yaml-lint + uses: ibiqlik/action-yamllint@v3 + with: + file_or_dir: weapons/*.yaml \ No newline at end of file