[Chore]: Add biometrical permissions (#148) #234
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: Build and Test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build_iOS: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v2 | |
- name: Setup Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: Build | |
run: xcodebuild -scheme PermissionsSwiftUI -destination 'generic/platform=iOS' build | |
# test_iOS: | |
# runs-on: macos-latest | |
# steps: | |
# - name: Checkout Repo | |
# uses: actions/checkout@v2 | |
# - name: Setup Xcode | |
# uses: maxim-lobanov/setup-xcode@v1 | |
# with: | |
# xcode-version: latest-stable | |
# - name: Test large screen device | |
# run: xcodebuild -scheme PermissionsSwiftUI -destination 'platform=iOS Simulator,name=iPhone 12 Pro Max' -only-testing:PermissionsSwiftUITests test | |
# - name: Test small screen device | |
# run: xcodebuild -scheme PermissionsSwiftUI -destination 'platform=iOS Simulator,name=iPod touch (7th generation)' -only-testing:PermissionsSwiftUISmallScreenTests test | |
Swift_format_lint: | |
name: Check swiftformat | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Install Swiftformat | |
run: brew install swiftformat | |
- name: Format Swift code | |
run: swiftformat --verbose . --swiftversion 5.2 | |
documentation_coverage: | |
name: Documentation coverage | |
runs-on: macos-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Install Jazzy | |
run: sudo gem install jazzy | |
- name: Ready shell script | |
run: chmod +x .github/documentation_coverage.sh | |
- name: Execute shell script | |
run: .github/documentation_coverage.sh | |
# lint_podspec: | |
# name: Lint podspec | |
# runs-on: macos-latest | |
# steps: | |
# - name: Checkout Repo | |
# uses: actions/checkout@v2 | |
# - name: lint podspec | |
# run: pod lib lint --allow-warnings |