Skip to content

Add linter workflow and fix reported issues #2

Add linter workflow and fix reported issues

Add linter workflow and fix reported issues #2

Workflow file for this run

name: Lint
on: # yamllint disable-line rule:truthy
push:
branches:
- master
pull_request:
types: [opened, synchronize, reopened]
permissions: {}
jobs:
build:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
statuses: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Lint
uses: super-linter/super-linter@v7.2.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}