Skip to content

Lowered the fuzzing threshold so we don't overflow the stack on CI #87

Lowered the fuzzing threshold so we don't overflow the stack on CI

Lowered the fuzzing threshold so we don't overflow the stack on CI #87

Workflow file for this run

name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
linux:
name: Linux
runs-on: ubuntu-latest
container:
image: swift:latest
steps:
- uses: actions/checkout@v1
- name: Test
run: swift test
macos:
name: macOS & iOS (Xcode)
runs-on: macos-11
steps:
- uses: actions/checkout@v1
- name: Test macOS
run: xcodebuild test -scheme SwiftCBOR -destination 'platform=OS X,arch=x86_64'
- name: Test iOS
run: xcodebuild test -scheme SwiftCBOR -destination 'platform=iOS Simulator,name=iPhone 13 Pro,OS=latest'