Skip to content

Commit

Permalink
Create ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Awesomeplayer165 authored Jan 4, 2024
1 parent d5f7cbf commit d322618
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/ci
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: CI

on:
push:
branches:
- main
paths-ignore:
- 'README.md'
- 'CODE_OF_CONDUCT.md'
- 'CONTRIBUTING.md'
- 'LICENSE'
- 'SECURITY.md'
- 'ios.yml'
pull_request:
branches:
- main

jobs:
test:
name: Test
runs-on: macOS-latest
strategy:
matrix:
destination:
- "platform=macOS"
# - "platform=macOS,variant=Mac Catalyst"
- "platform=iOS Simulator,name=iPhone 11"

steps:
- uses: actions/checkout@v4
- name: Install XCBeautify
run: brew install xcbeautify
- name: Show buildable schemes
run: xcodebuild -list
- name: Test Each Platform
run: set -o pipefail && xcodebuild -scheme PillboxView -destination "${{ matrix.destination }}" test | xcbeautify --renderer github-actions

0 comments on commit d322618

Please sign in to comment.