-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add jacoco report * fix * test * test * fix * create coverage badge * fix json path * fix permission * update deploy
- Loading branch information
Showing
5 changed files
with
69 additions
and
32 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,42 +5,77 @@ name: kmp-socketio build and test. | |
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
branches: ["main"] | ||
pull_request: | ||
branches: [ "main" ] | ||
branches: ["main"] | ||
workflow_call: | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
include: | ||
- cmd: "${GITHUB_WORKSPACE}/gradlew :kmp-socketio:jvmTest --info" | ||
os: ubuntu-latest | ||
dep: "cd ${GITHUB_WORKSPACE}/kmp-socketio/src/jvmTest/resources/ && npm install" | ||
runs-on: ${{ matrix.os }} | ||
|
||
runs-on: ubuntu-latest | ||
permissions: | ||
pull-requests: write | ||
contents: write | ||
id-token: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'recursive' | ||
- uses: actions/setup-java@v4 | ||
with: | ||
java-version: '17' | ||
distribution: 'temurin' | ||
cache: 'gradle' | ||
- uses: gradle/actions/setup-gradle@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 14 | ||
- if: ${{ matrix.dep }} | ||
run: ${{ matrix.dep }} | ||
- if: ${{ matrix.os == 'windows-latest' }} | ||
shell: cmd | ||
run: ${{ matrix.cmd }} | ||
- if: ${{ matrix.os != 'windows-latest' }} | ||
run: ${{ matrix.cmd }} | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: "recursive" | ||
- uses: actions/setup-java@v4 | ||
with: | ||
java-version: "17" | ||
distribution: "temurin" | ||
cache: "gradle" | ||
- uses: gradle/actions/setup-gradle@v3 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 14 | ||
- name: Setup Test Env | ||
run: | | ||
cd kmp-socketio/src/jvmTest/resources/ | ||
npm install | ||
- name: Run Jvm tests | ||
run: | | ||
./gradlew :kmp-socketio:jvmTest --info | ||
- name: Gen coverage | ||
run: | | ||
./gradlew koverXmlReport | ||
- name: Add coverage to PR | ||
id: jacoco | ||
uses: madrapps/[email protected] | ||
with: | ||
paths: ${{ github.workspace }}/kmp-socketio/build/reports/kover/report.xml | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
min-coverage-overall: 80 | ||
min-coverage-changed-files: 80 | ||
pass-emoji: ":white_check_mark:" | ||
fail-emoji: ":negative_squared_cross_mark:" | ||
- name: Overall coverage check | ||
if: ${{ steps.jacoco.outputs.coverage-overall < 80 || steps.jacoco.outputs.coverage-changed-files < 80 }} | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
core.setFailed("Coverage check failed! overall ${{ steps.jacoco.outputs.coverage-overall }}, diff ${{ steps.jacoco.outputs.coverage-changed-files }}.") | ||
- name: Create coverage summary json | ||
uses: jsdaniell/[email protected] | ||
with: | ||
dir: kmp-socketio/build/reports/kover/ | ||
name: "coverage.json" | ||
json: '{"total":{"instructions":{"pct":${{ steps.jacoco.outputs.coverage-overall }} }}}' | ||
- name: Create Coverage Badges | ||
uses: jaywcjlove/coverage-badges-cli@main | ||
with: | ||
style: flat | ||
source: ${{ github.workspace }}/kmp-socketio/build/reports/kover/coverage.json | ||
output: dist/badges.svg | ||
jsonPath: totals.instructions.pct | ||
- name: Deploy | ||
uses: peaceiris/actions-gh-pages@v4 | ||
if: ${{ github.ref == 'refs/heads/main' }} | ||
with: | ||
commit_message: ${{ github.event.head_commit.message }} | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
publish_dir: ./dist |
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
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
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
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