Skip to content

minor refactor

minor refactor #38

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
env:
SP_NAME: Injection
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Prepare Build
run: brew bundle
- name: Lint
if: startsWith(github.ref, 'refs/tags/') != true
run: swiftformat --lint . && swiftlint
- name: Run tests
run: swift test --enable-code-coverage
- name: Prepare Code Coverage
run: xcrun llvm-cov export -format="lcov" .build/debug/${{ env.SP_NAME }}PackageTests.xctest/Contents/MacOS/${{ env.SP_NAME }}PackageTests -instr-profile .build/debug/codecov/default.profdata > coverage.lcov
- name: Upload coverage to CodeCov.io
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
files: ./coverage.lcov
token: ${{ secrets.CODECOV_TOKEN }}