Skip to content

Commit

Permalink
Add *basic* CI workflow for checking script/setup
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrudolph committed Jul 25, 2024
1 parent 86203f5 commit 35a1d84
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI

on:
push

jobs:
build:
runs-on: macos-14

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install Homebrew
run: NONINTERACTIVE=1 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

- name: Verify Homebrew installation
run: brew --version

- run: script/setup

0 comments on commit 35a1d84

Please sign in to comment.