commit 76d1ee34d82c950460002783aafc8f843a3bc551 parent 3b0a84bd4368de9f553222fb24df80786e7e1259 Author: Joel Klabo <joelklabo@gmail.com> Date: Tue, 10 Jan 2023 15:46:38 -0800 Add CI Testing Closes: #304 Diffstat:
A | .github/workflows/run-tests.yaml | | | 18 | ++++++++++++++++++ |
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/run-tests.yaml b/.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]}+ \ No newline at end of file