Add support for opaque type (some keyword) to function parameter type in AutoMockable.stencil #16
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
# This workflow will build a Swift project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift | |
name: macOS | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }} | |
jobs: | |
macos_build: | |
runs-on: macos-13 | |
steps: | |
- name: Set Xcode 14.3.1 | |
run: sudo xcode-select -s /Applications/Xcode_14.3.1.app/Contents/Developer | |
#- name: Set Xcode 15.0 Beta | |
# run: sudo xcode-select -s /Applications/Xcode_15.0.app/Contents/Developer | |
- name: Print Current Xcode | |
run: xcode-select -p | |
- uses: actions/checkout@v3 | |
- name: Bundle Install | |
run: bundle install | |
- name: Swift Build | |
run: swift build | |
- name: Run tests | |
run: swift test | |