Skip to content

Commit

Permalink
Add tests
Browse files Browse the repository at this point in the history
  • Loading branch information
0xWDG committed Jul 18, 2024
1 parent b16decb commit 70a7724
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/test-iOS.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Build for iOS
on:
push:
pull_request:

jobs:
build_iOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3

- name: Swift build (iOS)
run: xcrun xcodebuild clean build -quiet -scheme DynamicUI -destination generic/platform=iOS
13 changes: 13 additions & 0 deletions .github/workflows/test-macOS.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Run tests on macOS
on:
push:
pull_request:

jobs:
test_macOS:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3

- name: Swift test
run: swift test

0 comments on commit 70a7724

Please sign in to comment.