Skip to content

Commit

Permalink
Add github actions work flow
Browse files Browse the repository at this point in the history
  • Loading branch information
mehrankmlf committed Sep 15, 2023
1 parent 5eae31c commit a3fcd65
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@

name: Tests PassGuard using CI process
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build-and-test:
runs-on: macos-13
steps:
- uses: actions/checkout@v2
- name: Select Xcode
run: sudo Xcode-select -switch /Applications/Xcode_14.3.app
- name: Build & Test
run: xcodebuild test -scheme PassGuard -project PassGuard.xcodeproj -destination 'platform=iOS Simulator,name=iPhone 14'

0 comments on commit a3fcd65

Please sign in to comment.