Add useful functions #105
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: macOS CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: brew linking and update | |
run: brew update && brew upgrade || brew link --overwrite node@18 | |
- name: check brew | |
run: make mac_run || brew link --overwrite go python | |
- name: check ZSH | |
run: make zsh_run | |
- name: check oh-my-zsh | |
run: make oh-my-zsh_run | |
- name: check VIM | |
run: make vim_run | |
- name: check starting | |
run: bash mac/starting.sh |