mirror of
https://github.com/cve-search/cpe-guesser.git
synced 2025-01-18 18:46:20 +00:00
23 lines
416 B
YAML
23 lines
416 B
YAML
|
name: ShellCheck
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- main
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- main
|
||
|
|
||
|
jobs:
|
||
|
shellcheck:
|
||
|
name: ShellCheck
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Run ShellCheck for shell scripts
|
||
|
uses: ludeeus/action-shellcheck@master
|
||
|
with:
|
||
|
severity: style
|
||
|
scandir: .
|
||
|
format: gcc
|
||
|
version: stable
|