Fix Xcode 15.3 build error on Intel Macs #7
Workflow file for this run
This file contains 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: Build and test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build-and-run-unit-tests: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: macOS | |
run: make ci-macos | |
check-dist: | |
needs: build-and-run-unit-tests | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: SwiftPM | |
run: make ci-swiftpm |