Skip to content

Commit

Permalink
Add the ShellCheck workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-derevenetz authored and platisd committed Mar 26, 2024
1 parent 44600cf commit 809cc8a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/shellcheck.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: shellcheck

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install ShellCheck
run: |
sudo apt-get -y update
sudo apt-get -y install shellcheck
- name: Analyze the scripts with ShellCheck
run: |
shellcheck action_launcher.bash

0 comments on commit 809cc8a

Please sign in to comment.