build(deps): bump github/codeql-action from 3.25.8 to 3.26.5 #81
Workflow file for this run
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: 🍎 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@a5ac7e51b41094c92402da3b24376905380afc29 | |
- 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@a5ac7e51b41094c92402da3b24376905380afc29 | |
- 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} |