Skip to content

Commit

Permalink
Create CI.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
li3zhen1 authored Mar 21, 2024
1 parent eb55f3e commit 59c0406
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: CI

on:
push:
pull_request:

jobs:
Xcode:
strategy:
matrix:
env:
- platform: macOS
destination: "platform=macOS"
action: test
runs-on: macOS-latest
env:
ACTION: ${{ matrix.env.action }}
DESTINATION: ${{ matrix.env.destination }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Xcode Version
run: xcodebuild -version
- name: Build and Test
run: xcodebuild test -scheme Grape-Package -destination "$DESTINATION" | xcpretty

0 comments on commit 59c0406

Please sign in to comment.