1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-04 01:34:12 -04:00
v2fly/.github/workflows/linter.yml

24 lines
494 B
YAML
Raw Normal View History

2020-08-24 12:04:31 -04:00
name: Lint
on:
push:
2020-08-24 04:09:51 -04:00
branches: [master]
pull_request:
2020-08-24 04:09:51 -04:00
branches: [master]
2020-08-24 12:04:31 -04:00
types: [opened, synchronize, reopened]
jobs:
2020-08-24 04:09:51 -04:00
lint:
runs-on: ubuntu-latest
steps:
2020-08-24 04:09:51 -04:00
- name: Checkout default branch
uses: actions/checkout@v2
- name: Lint Code Base
uses: github/super-linter@v3.8.3
env:
2020-06-27 08:50:41 -04:00
VALIDATE_ALL_CODEBASE: false
VALIDATE_JSON: false
VALIDATE_ANSIBLE: false
2020-08-24 07:57:46 -04:00
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}