You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
472 B

  1. name: Lint Pull Request
  2. # Documentation:
  3. # https://github.com/github/super-linter
  4. on:
  5. pull_request:
  6. branches: [master]
  7. jobs:
  8. build:
  9. name: Lint Code Base
  10. runs-on: ubuntu-latest
  11. steps:
  12. - name: Checkout Code
  13. uses: actions/checkout@v2
  14. - name: Lint Code Base
  15. uses: github/super-linter@v3
  16. env:
  17. VALIDATE_ALL_CODEBASE: false
  18. DEFAULT_BRANCH: master
  19. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}