From c55b77cb363d1d87957af9a197fa7c603edec396 Mon Sep 17 00:00:00 2001 From: sehyeon7 <127166536+sehyeon7@users.noreply.github.com> Date: Wed, 20 Nov 2024 17:29:56 +0900 Subject: [PATCH] Create linter.yml --- .github/workflows/linter.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/linter.yml diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml new file mode 100644 index 0000000..174b064 --- /dev/null +++ b/.github/workflows/linter.yml @@ -0,0 +1,31 @@ +# This is a basic workflow to help you get started with Actions + +--- +name: Lint +on: # yamllint disable-line rule:truthy + push: null + pull_request: null +permissions: {} +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 }} + FIX_MARKDOWN: true + FIX_CSHARP: true