Skip to content

Commit

Permalink
feat: Add mac CI (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
bzy-debug committed Mar 18, 2024
1 parent 6c96c2e commit 5adf1bb
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,31 @@ jobs:

- name: moon test
run: moon test


- name: moon bundle
run: moon bundle

- name: format diff
run: |
moon fmt
git diff
build-on-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4

- name: install
run: |
/bin/bash -c "$(curl -fsSL https://cli.moonbitlang.com/mac_intel_moon_setup.sh)"
echo "$HOME/.moon/bin" >> $GITHUB_PATH
- name: moon check
run: moon check

- name: moon test
run: moon test

- name: moon bundle
run: moon bundle

Expand Down

0 comments on commit 5adf1bb

Please sign in to comment.