Updated FAQ to include workaround for transaction active error #236
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
permissions: {} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
test: | |
name: Test on ${{ matrix.platform.os }} using Xcode ${{ matrix.xcode }} | |
runs-on: macos-13 | |
env: | |
xcodeproj: Auth0.xcodeproj | |
strategy: | |
matrix: | |
platform: | |
- { os: iOS, scheme: Auth0.iOS } | |
- { os: macOS, scheme: Auth0.macOS } | |
- { os: tvOS, scheme: Auth0.tvOS } | |
xcode: | |
- '15.0.1' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
with: | |
xcode: ${{ matrix.xcode }} | |
- name: Run tests | |
uses: ./.github/actions/test | |
with: | |
xcode: ${{ matrix.xcode }} | |
scheme: ${{ matrix.platform.scheme }} | |
platform: ${{ matrix.platform.os }} | |
- name: Convert coverage report | |
if: ${{ matrix.platform.os == 'iOS' }} | |
run: bundle exec slather coverage -x --scheme ${{ matrix.platform.scheme }} ${{ env.xcodeproj }} | |
- name: Upload coverage report | |
if: ${{ matrix.platform.os == 'iOS' }} | |
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # [email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
test-package: | |
name: Test Swift package using Xcode ${{ matrix.xcode }} | |
runs-on: macos-13 | |
strategy: | |
matrix: | |
xcode: | |
- '15.0.1' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
with: | |
xcode: ${{ matrix.xcode }} | |
- name: Run tests | |
run: swift test | |
pod-lint: | |
name: Lint podspec using Xcode ${{ matrix.xcode }} | |
runs-on: macos-13-xlarge | |
strategy: | |
matrix: | |
xcode: | |
- '15.2' | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
with: | |
xcode: ${{ matrix.xcode }} | |
- name: Run pod lib lint | |
run: bundle exec pod lib lint --allow-warnings --fail-fast | |
swiftlint: | |
name: Lint code with SwiftLint | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 | |
- name: Run SwiftLint | |
run: swiftlint lint --reporter github-actions-logging |