23 lines
384 B
YAML
23 lines
384 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
sh-checker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Run sh-checker
|
|
uses: luizm/action-sh-checker@v0.1.12
|
|
env:
|
|
SHELLCHECK_OPTS: -s ash
|
|
SHFMT_OPTS: -i 2
|
|
with:
|
|
sh_checker_comment: false
|