Skip to content

Commit

Permalink
add brew_install yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cmb-sy committed May 25, 2024
1 parent c2f4f7c commit 4440ee7
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/brew_install_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: dotfile install test

on:
push:
pull_request:
schedule:
- cron: "0 0 1 * *"

jobs:
dotfile-install-test:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
fail-fast: false # continue running other OS even if the job fails.
runs-on: ${{ matrix.os }}
steps:
- name: Install dotfiles
run: |
curl -o brew_install.zsh -L https://raw.githubusercontent.com/cmb-sy/dotfiles/main/brew_install.zsh
chmod +x brew_install.zsh
./brew_install.zsh

0 comments on commit 4440ee7

Please sign in to comment.