Re-align CustomAuth #262
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the master branch | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# Checkout the code, and run mxcl's xcodebuild action to run the unit tests | |
jobs: | |
build: | |
runs-on: macOS-latest | |
strategy: | |
matrix: | |
platform: | |
- iOS | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Remove Development.xcworkspace to avoid tooling confusion | |
run: rm -rf Development.xcworkspace | |
- uses: mxcl/[email protected] | |
with: | |
platform: ${{ matrix.platform }} | |
action: test | |
scheme: CustomAuth | |
code-coverage: true | |
upload-logs: always |