Skip to content

Commit

Permalink
shellcheck: add a github shellcheck workflow
Browse files Browse the repository at this point in the history
We want to ensure the script remains clean over time
 and evolutions. Shellcheck is a tool that point out 
many possible mistakes in shell scripts to avoid bugs.

Create a github workflow to analyse the script each time a commit is pushed.
  • Loading branch information
JGrossholtz authored Dec 6, 2019
1 parent 0d6d9b2 commit 1ae6377
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: shellcheck
- uses: ludeeus/[email protected]

0 comments on commit 1ae6377

Please sign in to comment.