Setup Cursor and cleanup other macOS CLIs #178
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: GitHub Actions CI | |
on: | |
push: | |
branches: main | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
- macos-latest | |
steps: | |
- name: Set up Git repository | |
uses: actions/checkout@v4 | |
- name: Validate syntax | |
run: bash -n *.sh | |
- name: Test script/setup | |
run: bash script/setup | |
- name: Test bashrc | |
run: bash -xc "source ~/.bashrc" | |
- name: Test zshrc | |
run: zsh -xc "source ~/.zshrc" | |
if: matrix.os == 'macos-latest' |