Skip to content

Commit

Permalink
feat(zsh): add smoketest
Browse files Browse the repository at this point in the history
  • Loading branch information
KirkEasterson committed May 12, 2024
1 parent ed9abfe commit e45520f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/zsh.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: "Config test"
on: ["push"]

jobs:
test:
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
version:
- "master"
- "5.9"
- "5.8.1"
- "5.7.1"
container:
image: "ghcr.io/zsh-users/zsh:${{ matrix.version }}"
steps:
- uses: "actions/checkout@v4"

- run: "sudo apt-get install -y stow"
- run: "stow shell"
- run: "stow zsh"

- run: "zsh --version"

0 comments on commit e45520f

Please sign in to comment.