Skip to content

Commit 45b7e38

Browse files
committed
ci: GitHub Actionsでzshをインストールする
ubuntu-latest で zsh が見つからず tests/zsh-early-env.sh が失敗していたため、Verification 実行前に zsh を導入する。
1 parent b61432e commit 45b7e38

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ jobs:
1111
- name: Checkout
1212
uses: actions/checkout@v6
1313

14+
- name: Install zsh
15+
run: |
16+
sudo apt-get update
17+
sudo apt-get install -y zsh
18+
1419
- name: Run verification commands
1520
run: |
1621
for test in tests/*.sh; do sh "$test"; done

0 commit comments

Comments
 (0)