Skip to content

Commit 2dda7c9

Browse files
committed
ci: fix ci workflow
this was missing installation of dependencies Signed-off-by: Michael Adam <obnox@samba.org>
1 parent 68de5f3 commit 2dda7c9

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ jobs:
3434
uses: actions/checkout@v6
3535
with:
3636
fetch-depth: 1
37+
- name: Install dependencies (shellcheck)
38+
if: matrix.os == 'macos-latest'
39+
run: |
40+
brew install shellcheck
41+
if: matrix.os == 'ubuntu-latest'
42+
run: |
43+
sudo apt update
44+
sudo apt install -y shellcheck
3745
3846
- name: run checks
3947
run: make check

0 commit comments

Comments
 (0)