Update git config #244
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: Smoke Test CI | |
on: [push] | |
jobs: | |
build-linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install dependencies | |
run: sudo apt-get install zsh | |
- uses: actions/checkout@v4 | |
- name: Run dotbot profile installation | |
shell: zsh {0} | |
run: zsh -c "./install workstation" | |
build-macos: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run dotbot profile installation | |
shell: zsh {0} | |
run: zsh -c "./install workstation-mac" |