Skip to content

Code format

Code format #95

Workflow file for this run

name: Build
on:
push:
branches: [ master, develop ]
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Build
run: swift build -v
- name: Run tests
run: |
swift test --enable-code-coverage -v
xcrun llvm-cov export -format="lcov" .build/debug/DLogPackageTests.xctest/contents/macos/DLogPackageTests -instr-profile .build/debug/codecov/default.profdata -ignore-filename-regex='Tests' -ignore-filename-regex='Net' > info.lcov
bash <(curl -s https://codecov.io/bash)