Skip to content

Remove Qodana quality check (does not support swift) #8

Remove Qodana quality check (does not support swift)

Remove Qodana quality check (does not support swift) #8

Workflow file for this run

name: integration-checks
on:
push:
branches:
- "main"
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build
run: swift build
- name: Test
run: swift test
macos:
runs-on: macos-12
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)