Skip to content

re-enabling package-benchmark and updating to reference CRDT benchmarks #154

re-enabling package-benchmark and updating to reference CRDT benchmarks

re-enabling package-benchmark and updating to reference CRDT benchmarks #154

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: macos-14
steps:
- name: Checkout Project
uses: actions/checkout@v3
- name: Show Build Version
run: xcodebuild -version
- name: build and test
run: swift test --enable-code-coverage -v
- name: Prepare Code Coverage
run: xcrun llvm-cov export -format="lcov" .build/debug/CRDTPackageTests.xctest/Contents/MacOS/CRDTPackageTests -instr-profile .build/debug/codecov/default.profdata > info.lcov
- name: Upload to CodeCov.io
run: bash <(curl https://codecov.io/bash)
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}