mirror of
https://github.com/zdharma-continuum/zinit.git
synced 2026-09-10 07:36:38 -04:00
Add zcompile step
This commit is contained in:
parent
9c73ed01a0
commit
81153ef210
11
.github/workflows/linting.yaml
vendored
11
.github/workflows/linting.yaml
vendored
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue