Update CI to latest versions #104
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: iOS starter workflow | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| buildAndTest: | |
| name: Build and Test | |
| strategy: | |
| matrix: | |
| include: | |
| # Only using "latest" CI for the moment. | |
| # We'll decide later whether to keep running tests on older environments | |
| - macos: "macos-latest" | |
| runs-on: ${{ matrix.macos }} | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: ${{ matrix.xcode }} | |
| - name: Build and Test | |
| run: make test |