Files
gitea-debian-runner/.github/workflows/lint.yml
T
dependabot[bot] 0e9a29dc8d build(deps): bump megalinter/megalinter from 5.12.0 to 5.13.0 (#63)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-06-01 16:37:36 +02:00

27 lines
589 B
YAML

name: Lint Code Base
on:
push:
branches:
- 'master'
pull_request:
workflow_dispatch:
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Lint
uses: megalinter/megalinter/flavors/documentation@v5.13.0
env:
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: false
GITHUB_STATUS_REPORTER: ${{ !env.ACT }}
GITHUB_COMMENT_REPORTER: ${{ !env.ACT }}