feat(zsh): set ZDOTDIR in smoke test #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "zsh" | |
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: "install_packages stow" | |
- run: "stow shell" | |
- run: "stow zsh" | |
- name: "Check zsh" | |
run: "ZDOTDIR=~/.config/zsh zsh --version" |