Skip to content

Commit

Permalink
Check bash scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
richelbilderbeek committed Aug 31, 2023
1 parent 185dae0 commit 918b3e3
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/check_bash_style.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Check bash style

on:
push:
pull_request:
schedule:
- cron: "0 0 16 * *"


jobs:
check_bash_style:

runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:

- name: Set up Git repository
uses: actions/checkout@v2

- name: Check bash scripts for style
run: shellcheck *.sh scripts/*.sh

0 comments on commit 918b3e3

Please sign in to comment.