Skip to content

Commit

Permalink
trying CI
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmassicotte committed Dec 7, 2023
1 parent 2527f31 commit 82deee8
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
@@ -0,0 +1,34 @@
name: CI

on:
push:
branches:
- '*'
pull_request:
branches:
- main

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

steps:
- uses: actions/checkout@v3
- name: Test platform ${{ matrix.destination }}
run: set -o pipefail && xcodebuild -scheme EditorConfig -destination "${{ matrix.destination }}" test | xcpretty
linux-test:
name: Test Linux
runs-on: ubuntu-latest
container:
image: swift:latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Test
run: swift test

0 comments on commit 82deee8

Please sign in to comment.