This repository has been archived by the owner on Jun 13, 2024. It is now read-only.
Update README to include deprecation notice #113
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Cleanse-CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
test: | |
runs-on: macos-latest | |
env: | |
DEVELOPER_DIR: /Applications/Xcode.app/Contents/Developer | |
steps: | |
- uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- uses: actions/checkout@v2 | |
- name: Test | |
run: xcodebuild test -project Cleanse.xcodeproj -scheme Cleanse -enableCodeCoverage=YES -destination "platform=iOS Simulator,name=iPhone 8" | |
- name: Test CleanseGithubBrowser Sample App | |
run: xcodebuild test -project Examples/CleanseGithubBrowser/CleanseGithubBrowser.xcodeproj -scheme CleanseGithubBrowser -destination "platform=iOS Simulator,name=iPhone 8" | |
- name: Test CleanseSwiftUI Sample App | |
run: xcodebuild -project Examples/CleanseSwiftUIExample/CleanseSwiftUIExample.xcodeproj -scheme adoptme -destination "platform=iOS Simulator,name=iPhone 8" | |
- name: Test cleansec | |
run: xcodebuild test -workspace cleansec.xcworkspace -scheme cleansec -enableCodeCoverage=YES -destination "platform=macos" | |
working-directory: cleansec |