Skip to content

Commit

Permalink
Run shellcheck from action
Browse files Browse the repository at this point in the history
  • Loading branch information
pietern committed Jun 6, 2024
1 parent bf82b7a commit 6fa97fa
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,3 +209,19 @@ jobs:
- name: Assert installation path is ~/bin
run: ./setup-cli/assert/path.sh ~/bin/databricks
shell: bash

shellcheck:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
with:
path: ./setup-cli

- name: Install shellcheck
run: sudo apt-get install shellcheck
shell: bash

- name: Run shellcheck
run: shellcheck ./setup-cli/*.sh
shell: bash

0 comments on commit 6fa97fa

Please sign in to comment.