Skip to content

fix: post-bump of lang-bash #43

fix: post-bump of lang-bash

fix: post-bump of lang-bash #43

Workflow file for this run

---
name: Linting
on: # yamllint disable-line rule:truthy
workflow_dispatch:
push:
branches: [ main ]
pull_request:
permissions:
contents: read
packages: read
statuses: write
jobs:
linting:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
persist-credentials: false
- name: Run Linter
uses: super-linter/super-linter/slim@v8
env:
LOG_LEVEL: NOTICE
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SUPPRESS_POSSUM: true
VALIDATE_ALL_CODEBASE: true
VALIDATE_EDITORCONFIG: true
VALIDATE_GITHUB_ACTIONS: true
VALIDATE_GITHUB_ACTIONS_ZIZMOR: true
VALIDATE_MARKDOWN: true
VALIDATE_YAML: true