mirror of
https://github.com/geerlingguy/mac-dev-playbook
synced 2024-11-21 11:23:02 +00:00
Run tests on Mac OS 14 and 15 (#209)
* Run tests on Mac OS 14 and 15 * Update uninstall-homebrew.sh * Don't die on bad terminal defaults request. --------- Co-authored-by: Jeff Geerling <geerlingguy@mac.com>
This commit is contained in:
parent
b660bf1c2b
commit
3e46828d30
3 changed files with 4 additions and 2 deletions
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
|
@ -36,8 +36,8 @@ jobs:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- macos-12
|
- macos-15
|
||||||
- macos-11
|
- macos-14
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the codebase.
|
- name: Check out the codebase.
|
||||||
|
|
|
@ -4,6 +4,7 @@
|
||||||
command: defaults read com.apple.terminal 'Default Window Settings'
|
command: defaults read com.apple.terminal 'Default Window Settings'
|
||||||
register: terminal_theme
|
register: terminal_theme
|
||||||
changed_when: false
|
changed_when: false
|
||||||
|
failed_when: false
|
||||||
check_mode: false
|
check_mode: false
|
||||||
|
|
||||||
- name: Ensure custom Terminal profile is added.
|
- name: Ensure custom Terminal profile is added.
|
||||||
|
|
|
@ -11,3 +11,4 @@ sudo ./uninstall.sh --force
|
||||||
sudo rm -rf /usr/local/Homebrew
|
sudo rm -rf /usr/local/Homebrew
|
||||||
sudo rm -rf /usr/local/Caskroom
|
sudo rm -rf /usr/local/Caskroom
|
||||||
sudo rm -rf /usr/local/bin/brew
|
sudo rm -rf /usr/local/bin/brew
|
||||||
|
sudo rm -rf /opt/homebrew
|
||||||
|
|
Loading…
Reference in a new issue