Tracks whether the v3.0 release can be merged cleanly into main #561
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Code Coverage | |
on: [pull_request] | |
jobs: | |
codecov: | |
container: | |
image: swift:5.7 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- run: swift test --enable-test-discovery --enable-code-coverage | |
- id: analysis | |
uses: mattpolzin/[email protected] | |
with: | |
MINIMUM_COVERAGE: 98 | |
INCLUDE_TESTS: 'true' |