chore: Swift Upcoming Features対応を進める #458
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: | |
| - Docs/** | |
| - README.md | |
| - LICENSE | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| paths-ignore: | |
| - Docs/** | |
| - README.md | |
| - LICENSE | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| env: | |
| DEVELOPER_DIR: /Applications/Xcode_26.3.app | |
| jobs: | |
| build: | |
| name: Build for ${{ matrix.project }} | |
| runs-on: macos-15 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| project: ["production", "develop"] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Build for ${{ matrix.project }} | |
| run: make build-debug-${{ matrix.project }} | |
| soundness: | |
| name: Soundness | |
| uses: swiftlang/github-workflows/.github/workflows/soundness.yml@0.0.1 | |
| with: | |
| api_breakage_check_enabled: false | |
| docs_check_enabled: false | |
| license_header_check_enabled: false | |
| format_check_enabled: false |