feat: Add macros from combine-interception-macros
package
#2
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '*' | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
library-swift-latest: | |
name: Library | |
if: | | |
!contains(github.event.head_commit.message, '[ci skip]') && | |
!contains(github.event.head_commit.message, '[ci skip test]') && | |
!contains(github.event.head_commit.message, '[ci skip library-swift-latest]') | |
runs-on: macos-13 | |
timeout-minutes: 30 | |
strategy: | |
matrix: | |
config: | |
- debug | |
- release | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode 15.2 | |
run: sudo xcode-select -s /Applications/Xcode_15.2.app | |
- name: Run test | |
run: make test |