Skip to content

update github action #8

update github action

update github action #8

Workflow file for this run

name: ShellCheck
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
- name: Run ShellCheck
run: shellcheck sh_scripts/*.sh
- name: Report results
if: failure()
run: exit 1