Feature: Pass generic additional parameters back through Login #186
Workflow file for this run
This file contains hidden or 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: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'README.md' | |
| - 'CODE_OF_CONDUCT.md' | |
| - '.editorconfig' | |
| - '.spi.yml' | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test | |
| timeout-minutes: 30 | |
| runs-on: macos-26 | |
| env: | |
| DEVELOPER_DIR: /Applications/Xcode_26.0.app | |
| strategy: | |
| matrix: | |
| destination: | |
| - "platform=macOS" | |
| - "platform=macOS,variant=Mac Catalyst" | |
| - "platform=iOS Simulator,name=iPhone 16e" | |
| - "platform=tvOS Simulator,name=Apple TV" | |
| - "platform=watchOS Simulator,name=Apple Watch Series 11 (42mm)" | |
| - "platform=visionOS Simulator,name=Apple Vision Pro" | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Test platform ${{ matrix.destination }} | |
| run: set -o pipefail && xcodebuild -scheme OAuthenticator -destination "${{ matrix.destination }}" test | xcbeautify | |
| linux_test: | |
| name: Test Linux | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| strategy: | |
| matrix: | |
| swift-version: | |
| - 6.1 | |
| - 6.2 | |
| - latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Swiftly | |
| uses: vapor/swiftly-action@v0.2.0 | |
| with: | |
| toolchain: ${{ matrix.swift-version }} | |
| - name: Test | |
| run: swift test |