Increase Stream Payload Delay #89
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: "Firewalk CI" | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- ".github/workflows/**" | |
- "Package.swift" | |
- "Sources/**" | |
- "Tests/**" | |
pull_request: | |
paths: | |
- ".github/workflows/**" | |
- "Package.swift" | |
- "Sources/**" | |
- "Tests/**" | |
concurrency: | |
group: ${{ github.ref_name }} | |
cancel-in-progress: true | |
jobs: | |
macOS: | |
name: macOS | |
runs-on: firebreak | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_14.3.app/Contents/Developer | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: SPM Test | |
run: swift test -c debug --sanitize=thread | |
Linux: | |
name: Linux | |
runs-on: ubuntu-22.04 | |
container: | |
image: swiftlang/swift:nightly-5.8-jammy | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: SPM Linux Test | |
run: swift test -c debug | |
Linux_Nightly: | |
name: Linux Nightly | |
runs-on: ubuntu-22.04 | |
container: | |
image: swiftlang/swift:nightly-jammy | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: SPM Linux Test | |
run: swift test -c debug |