diff --git a/.github/workflows/code_lint.yml b/.github/workflows/code_lint.yml new file mode 100644 index 0000000..1cd0563 --- /dev/null +++ b/.github/workflows/code_lint.yml @@ -0,0 +1,32 @@ +--- +name: Lint + +on: # yamllint disable-line rule:truthy + push: null + pull_request: null + +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@v6.3.0 # x-release-please-version + env: + # To report GitHub Actions status checks + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} +... diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..c77986e --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,3 @@ + - name: Super-Linter + uses: super-linter/super-linter@v6.3.0 +