Skip to content
This repository has been archived by the owner on Oct 3, 2024. It is now read-only.

Update README.md

Update README.md #7

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
tests:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build and Test
run: swift test --enable-code-coverage
- name: Code coverage
run: xcrun llvm-cov export -format="lcov" .build/debug/xnPackageTests.xctest/Contents/MacOS/xnPackageTests -instr-profile .build/debug/codecov/default.profdata > unit.lcov
continue-on-error: true
- uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true