feat: add handling of 'LAError.Code.passcodeNotSet' error #27
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: Test all platforms | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allow one concurrent deployment | |
concurrency: | |
group: "testing" | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macOS-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Switch Xcode 🔄 | |
run: sudo xcode-select --switch /Applications/Xcode_15.0.app | |
- name: Swift Lint | |
run: swiftlint --strict | |
- name: Test iOS | |
run: xcodebuild test -scheme fs-local-authentication-provider -destination "platform=iOS Simulator,name=iPhone 15" -enableCodeCoverage YES -skipPackagePluginValidation | |
- name: Fetch Coverage | |
uses: sersoft-gmbh/swift-coverage-action@v4 | |
id: coverage-files | |
- name: Publish Coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Test macOS | |
run: xcodebuild test -scheme fs-local-authentication-provider -destination "platform=macOS" -enableCodeCoverage YES |