Browse Source

Add CI Testing

Closes: #304
translations_damus-localizations-en-us-xcloc-localized-contents-en-us-xliff--master_es_419
Joel Klabo 2 years ago
committed by William Casarin
parent
commit
76d1ee34d8
  1. 17
      .github/workflows/run-tests.yaml

17
.github/workflows/run-tests.yaml

@ -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]}
Loading…
Cancel
Save