Skip to content

Optimize the performance of CHA algorithm #116

Optimize the performance of CHA algorithm

Optimize the performance of CHA algorithm #116

Workflow file for this run

name: Test
on:
push:
pull_request:
workflow_dispatch: # add manual trigger button
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-java@v4
with:
java-version: 17
distribution: temurin
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
- name: Test
run: |
./gradlew test jacocoTestReport --scan
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}