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: Swift Source Compatibility | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| swift-source-compat-suite: | |
| name: Test Swift ${{ matrix.container }} For Source Compatibility Suite | |
| runs-on: ubuntu-latest | |
| if: ${{ !contains(github.event.head_commit.message, 'ci skip') }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Spinetail's manifest is swift-tools-version 6.4, so older stable | |
| # toolchains can't parse it; source-compat only exercises the nightly | |
| # 6.4 toolchain the package targets (release config, sandbox disabled). | |
| container: | |
| - swiftlang/swift:nightly-6.4.x-noble | |
| container: ${{ matrix.container }} | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| - name: Test Swift 6.4 For Source Compatibility | |
| run: swift build --disable-sandbox --verbose --configuration release |