mirror of
https://github.com/Retropex/raspiblitz.git
synced 2025-05-12 19:20:48 +02:00
20 lines
352 B
YAML
20 lines
352 B
YAML
name: "Test Shellcheck"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches: ["dev"]
|
|
pull_request:
|
|
branches: ["dev"]
|
|
|
|
jobs:
|
|
shellcheck:
|
|
name: Run Shellcheck
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Run ShellCheck
|
|
uses: ludeeus/action-shellcheck@master
|
|
with:
|
|
severity: error
|