install #22
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: install | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
schedule: | |
- cron: "0 13 * * 6" | |
jobs: | |
install_dots: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
# once linux support is added for servers, update this | |
# os: [macos-latest, ubuntu-latest] | |
os: [macos-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install brew | |
run: | | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
- name: Install dotfiles | |
run: | | |
brew install chezmoi | |
chezmoi init --apply mariolopjr | |
- name: Check installed versions | |
run: | | |
brew --version | |
brew list --versions | |
brew list --cask --versions |