Skip to content

build(deps): bump actions/checkout from 4.1.0 to 4.1.1 #63

build(deps): bump actions/checkout from 4.1.0 to 4.1.1

build(deps): bump actions/checkout from 4.1.0 to 4.1.1 #63

Workflow file for this run

---
name: 🍎 Build (MacOS)
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
shellcheck:
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: ☑️ ShellCheck
uses: ludeeus/action-shellcheck@00cae500b08a931fb5698e11e79bfbd38e612a38
with:
scandir: "./Scripts/install.sh"
build:
runs-on: macos-latest
timeout-minutes: 30
needs: [shellcheck]
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: ⚙️ Prepare
run: |
brew install zsh
- name: ⚙️ Build
run: sh ./Scripts/install.sh && ls -a $HOME/.zi/zmodules/zpmod/Src/zi
- name: ⚙️ Load
run: |
module_path+=( "$HOME/.zi/zmodules/zpmod/Src" )
zmodload zi/zpmod
zpmod source-study -l
shell: zsh {0}