mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
Bensuperpc
d02099ad95
Change to bash in shellcheck and rename dockcross script to dockcross.sh Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
28 lines
480 B
YAML
28 lines
480 B
YAML
name: Shellcheck CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- '*'
|
|
paths-ignore:
|
|
- '**/README.md'
|
|
pull_request:
|
|
branches:
|
|
- '*'
|
|
paths-ignore:
|
|
- '**/README.md'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: Shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Run ShellCheck
|
|
uses: ludeeus/action-shellcheck@master
|
|
with:
|
|
severity: error
|
|
format: gcc
|
|
env:
|
|
SHELLCHECK_OPTS: bash |