Update the generator to swift 6.2 #7
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 Exercises | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| run-exercises-tests-ubuntu: | |
| name: Run exercise tests for swift ${{ matrix.swift }} on Ubuntu | |
| runs-on: ubuntu-24.04 | |
| strategy: | |
| matrix: | |
| swift: ["6.0", "6.1", "6.2"] | |
| container: | |
| image: swift:${{ matrix.swift }} | |
| env: | |
| RUNALL: "true" | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - name: Run tests | |
| run: swift test | |
| run-exercises-tests-macos: | |
| name: Run exercise tests on macOS ${{ matrix.macOS }} with Xcode ${{ matrix.xcode }} | |
| runs-on: macos-${{ matrix.macOS }} | |
| strategy: | |
| matrix: | |
| include: | |
| - macOS: '26' | |
| xcode: '26.0' | |
| env: | |
| RUNALL: "true" | |
| DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
| - name: Run tests | |
| run: swift test |