π Major update: Modern Mac setup scripts for 2025 #7
This file contains hidden or 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 Setup | |
on: [push] | |
jobs: | |
setup: | |
name: Testing MacOS Setup | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set Permissions | |
run: chmod +x *.sh | |
shell: bash | |
- name: Setup MacOS Defaults | |
run: ./defaults.sh | |
shell: bash | |
- name: Setup Apps | |
run: ./install.sh | |
shell: bash |