main.yml 759 B

1234567891011121314151617181920212223
  1. # This is a basic workflow to help you get started with Actions
  2. name: Shellcheck
  3. # Triggers the workflow on push or pull request on all branches
  4. on: [push, pull_request]
  5. # A workflow run is made up of one or more jobs that can run sequentially or in parallel
  6. jobs:
  7. # This workflow contains a single job called "build"
  8. build:
  9. # The type of runner that the job will run on
  10. runs-on: ubuntu-latest
  11. # Steps represent a sequence of tasks that will be executed as part of the job
  12. steps:
  13. # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
  14. - uses: actions/checkout@v2
  15. # Runs a set of commands using the runners shell
  16. - name: Run shellcheck
  17. run: |
  18. shellcheck -s sh tmpmail