From 343c77dbb2d62fcca1c0792febc548bb386ea541 Mon Sep 17 00:00:00 2001 From: Aaron Rueth Date: Wed, 23 Oct 2024 16:39:01 +0000 Subject: [PATCH] Added Super-Linter --- .github/workflows/super-linter.yaml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/super-linter.yaml diff --git a/.github/workflows/super-linter.yaml b/.github/workflows/super-linter.yaml new file mode 100644 index 00000000..dd50d9fa --- /dev/null +++ b/.github/workflows/super-linter.yaml @@ -0,0 +1,29 @@ +# https://github.com/super-linter/super-linter +name: Super-Linter +on: # yamllint disable-line rule:truthy +- push +- pull_request +jobs: + build: + name: Lint + runs-on: ubuntu-latest + + permissions: + contents: read + packages: read + # To report GitHub Actions status checks + statuses: write + + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + # super-linter needs the full git history to get the + # list of files that changed across commits + fetch-depth: 0 + + - name: Super-linter + uses: super-linter/super-linter@v7.1.0 # x-release-please-version + env: + # To report GitHub Actions status checks + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file