mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 18:17:52 -05:00
190b1cb044
Bumps [github/super-linter](https://github.com/github/super-linter) from V3.8.0 to v3.8.3. - [Release notes](https://github.com/github/super-linter/releases) - [Commits](https://github.com/github/super-linter/compare/V3.8.0...9f2c65685b15fc1f26feeca84d889bf27f1c31d2) Signed-off-by: dependabot[bot] <support@github.com>
24 lines
494 B
YAML
24 lines
494 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
pull_request:
|
|
branches: [master]
|
|
types: [opened, synchronize, reopened]
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout default branch
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Lint Code Base
|
|
uses: github/super-linter@v3.8.3
|
|
env:
|
|
VALIDATE_ALL_CODEBASE: false
|
|
VALIDATE_JSON: false
|
|
VALIDATE_ANSIBLE: false
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|