Files
gitea-debian-runner/.github/workflows/lint.yml
T
dependabot[bot] 664778dd40 build(deps): bump megalinter/megalinter from 5.2.0 to 5.8.0 (#49)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-02-23 21:00:32 +01:00

27 lines
588 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@v2
with:
fetch-depth: 0
- name: Lint
uses: megalinter/megalinter/flavors/documentation@v5.8.0
env:
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_ALL_CODEBASE: false
GITHUB_STATUS_REPORTER: ${{ !env.ACT }}
GITHUB_COMMENT_REPORTER: ${{ !env.ACT }}