1
0
mirror of git://jb55.com/damus synced 2024-09-18 19:23:49 +00:00

Add CI Testing

Closes: #304
This commit is contained in:
Joel Klabo 2023-01-10 15:46:38 -08:00 committed by William Casarin
parent 3b0a84bd43
commit 76d1ee34d8

17
.github/workflows/run-tests.yaml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Test
on:
push:
branches:
- "master"
pull_request:
branches:
- "*"
jobs:
test:
name: Run Tests
runs-on: macos-latest
steps:
- name: Checkout repository
uses: actions/checkout@v1
- name: Running Tests
run: xcodebuild test -scheme damus -project damus.xcodeproj -destination 'platform=iOS Simulator,name=iPhone 14,OS=16.0' | xcpretty && exit ${PIPESTATUS[0]}