fix(functions): fix streamed responses (#525) #55
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: Functions | |
on: | |
pull_request: | |
paths: | |
- "Sources/Functions/**" | |
- "Tests/FunctionsTests/**" | |
- ".github/workflows/functions.yml" | |
push: | |
branches: | |
- main | |
paths: | |
- "Sources/Functions/**" | |
- "Tests/FunctionsTests/**" | |
- ".github/workflows/functions.yml" | |
concurrency: | |
group: functions-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
test: | |
name: Test Functions | |
strategy: | |
fail-fast: false | |
matrix: | |
config: | |
- debug | |
- release | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Select Xcode 15.4 | |
run: sudo xcode-select -s /Applications/Xcode_15.4.app | |
- name: Run tests | |
run: CONFIG="${{ matrix.config }}" make test-functions | |
test-linux: | |
name: Test Functions (Linux) | |
strategy: | |
fail-fast: false | |
matrix: | |
swift-version: ["5.9", "5.10"] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-deptch: 0 | |
- uses: swift-actions/setup-swift@v2 | |
with: | |
swift-version: ${{ matrix.swift-version }} | |
- run: make dot-env | |
- name: Run tests | |
run: swift test --filter FunctionsTests. |