Skip to content

Add swift-docc-plugin #64

Add swift-docc-plugin

Add swift-docc-plugin #64

Workflow file for this run

name: build-macos
on:
push:
branches:
- "main"
jobs:
macos:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: swift build
- name: Test
run: swift test --enable-code-coverage
- name: Codecov
run: |
xcrun llvm-cov export -format="lcov" .build/debug/PeppermintPackageTests.xctest/Contents/MacOS/PeppermintPackageTests -instr-profile .build/debug/codecov/default.profdata > .build/PeppermintPackageTests.lcov
bash <(curl https://codecov.io/bash)