Skip to content

Update URLPredicate to reflect the changes on how URL class parses th… #3

Update URLPredicate to reflect the changes on how URL class parses th…

Update URLPredicate to reflect the changes on how URL class parses th… #3

Workflow file for this run

name: integration-checks
on:
push:
branches:
- 'main'
jobs:
linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Build
run: swift build
- name: Tests
run: swift test
macos:
runs-on: macos-12
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Build
run: swift build
- name: Tests
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)
quality:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: 'Qodana Scan'
uses: JetBrains/qodana-action@main
env:
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }}