mirror of
https://github.com/rlespinasse/github-slug-action.git
synced 2026-05-17 18:35:07 +00:00
27 lines
480 B
YAML
27 lines
480 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- v3.x
|
|
pull_request:
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout Code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Lint Code Base
|
|
uses: github/super-linter@v3
|
|
env:
|
|
VALIDATE_ALL_CODEBASE: false
|
|
DEFAULT_BRANCH: v3.x
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
FILTER_REGEX_INCLUDE: .*src/.*
|