Skip to content

fix: better handling of js promise error + fix generate cdp running a… #22

fix: better handling of js promise error + fix generate cdp running a…

fix: better handling of js promise error + fix generate cdp running a… #22

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest ]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up our JDK environment
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 21
- name: Install dependencies and run tests
run: ./gradlew jvmTest koverXmlReport --info
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}