Skip to content

fix: force grep to continue #244

fix: force grep to continue

fix: force grep to continue #244

Workflow file for this run

name: Swift
on: [push, pull_request]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build
test:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: swift test --sanitize=thread
test-sanitize:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: 'swift test --sanitize=thread 2>&1 | grep "ThreadSanitizer: data race" || exit 0; exit 1'