Skip to content

Commit

Permalink
🔧CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
igorkulman committed Jul 28, 2024
1 parent 1bf4240 commit 4468f55
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Test

on: [push]

jobs:
job-test:
name: Run unit tests
runs-on: macos-14
steps:
- uses: actions/checkout@v1

- name: Install needed software
run: |
gem install xcpretty
gem install bundler:1.17.2
- name: Run unit tests
run: fastlane tests
1 change: 1 addition & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ desc "Run Core unit tests"
lane :tests do
scan(
devices: ["iPhone 15"],
xcargs: "-skipPackagePluginValidation",
project: "sources/SwiftUISampleApp.xcodeproj",
)
end

0 comments on commit 4468f55

Please sign in to comment.