Add session delegate to initializer (#44) #256
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: Test | |
on: | |
# Trigger the workflow on push or pull request, | |
# for all branches, but never trigger on new tags | |
push: | |
branches: | |
- '**' | |
tags-ignore: | |
- '**' | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
test: | |
name: Run tests | |
runs-on: macos-13 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Change Xcode | |
run: sudo xcode-select -s /Applications/Xcode_15.0.1.app | |
- name: Build and test | |
run: swift test --enable-code-coverage --disable-automatic-resolution |