Skip to content

Commit

Permalink
add ci for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
idealvin committed Jun 17, 2021
1 parent 7d50040 commit 3472531
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: macOS

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
build:
strategy:
matrix:
os: [macOS-latest]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v1
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: branch@dev

- name: Tests
run: |
xmake -a
xmake r unitest -a
xmake r flag -xy
xmake f -m debug
xmake -a
xmake r unitest -a
xmake r flag -xy

0 comments on commit 3472531

Please sign in to comment.