main.yml 818 B

12345678910111213141516171819202122232425262728
  1. # This is a basic workflow to help you get started with Actions
  2. name: Code Quality
  3. # Controls when the action will run. Triggers the workflow on push or pull request
  4. # events but only for the master branch
  5. on:
  6. push:
  7. pull_request:
  8. # A workflow run is made up of one or more jobs that can run sequentially or in parallel
  9. jobs:
  10. # This workflow contains a single job called "build"
  11. build:
  12. # The type of runner that the job will run on
  13. runs-on: ubuntu-latest
  14. # Steps represent a sequence of tasks that will be executed as part of the job
  15. steps:
  16. # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
  17. - name: Checkout
  18. uses: actions/checkout@v2
  19. - name: ShellCheck
  20. uses: ludeeus/action-shellcheck@0.5.0
  21. with:
  22. ignore: dotfiles/scripts