Skip to content

Commit

Permalink
Shellcheck testkomodo.sh in github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
larsevj committed Oct 2, 2024
1 parent fc1a2fc commit 4638d4d
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,15 @@ jobs:
timeout-minutes: 60
steps:
- uses: actions/checkout@v4
- name: Download actionlint
- name: Download actionlint and shellcheck
id: get_actionlint
run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
run: |
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
sudo apt-get update
sudo apt-get install shellcheck
shell: bash
- name: Check workflow files
run: ${{ steps.get_actionlint.outputs.executable }} -color
run: |
${{ steps.get_actionlint.outputs.executable }} -color
shellcheck -s bash ci/testkomodo.sh
shell: bash

0 comments on commit 4638d4d

Please sign in to comment.