Files
gitea-debian-runner/.github/workflows/lint.yml
T
hackercat 7818b929c6 refactor: image building
refactor image building, add more variants
2021-05-02 17:17:16 +00:00

23 lines
465 B
YAML

name: Lint Code Base
on:
push:
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: github/super-linter@v3
env:
VALIDATE_ALL_CODEBASE: ${{ github.event_name != 'pull_request' }}
DEFAULT_BRANCH: master
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}