feat: Add Bedrock API key support #168
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: Swift6 Compatibility | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| AWS_SWIFT_SDK_USE_LOCAL_DEPS: 1 | |
| jobs: | |
| bump-swift-tools-version: | |
| if: github.repository == 'smithy-lang/smithy-swift' || github.event_name == 'pull_request' | |
| runs-on: ${{ matrix.runner }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| runner: | |
| - macos-15 | |
| xcode: | |
| - Xcode_16.1 | |
| destination: | |
| - 'platform=macOS' | |
| steps: | |
| - name: Checkout smithy-swift | |
| uses: actions/checkout@v4 | |
| - name: Setup common tools | |
| uses: ./.github/actions/setup-common-tools-composite-action | |
| - name: Build on swift-tools-version 6.0 | |
| run: | | |
| perl -pi -e 's{^// swift-tools-version:\d+\.\d+}{// swift-tools-version:6.0}' Package.swift | |
| set -euo pipefail | |
| swift build |