Add zcompile step

This commit is contained in:
Philipp Schmitt 2021-12-02 09:24:23 +01:00
parent 9c73ed01a0
commit 81153ef210
No known key found for this signature in database
GPG key ID: DC439C47EACB17F9

View file

@ -31,8 +31,17 @@ jobs:
run: |
sudo apt install -y zsh
- name: "👓 zsh -n: ${{ matrix.file }}"
- name: "👓 zsh -n ${{ matrix.file }}"
env:
ZSH_FILE: ${{ matrix.file }}
run: |
zsh -n "${ZSH_FILE}"
- name: "💎 zcompile ${{ matrix.file }}"
env:
ZSH_FILE: ${{ matrix.file }}
run: |
zsh -fc "zcompile ${ZSH_FILE}"
rc=$?
ls -al "${ZSH_FILE}.zwc"
exit "$rc"