Skip to content

update gradle to 8.5, jdk to 17 and fix vscode launch #46

update gradle to 8.5, jdk to 17 and fix vscode launch

update gradle to 8.5, jdk to 17 and fix vscode launch #46

Workflow file for this run

name: Code coverage
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
codecov:
# run code coverage only on main repository
if: github.repository == 'elki-project/elki'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Code coverage
run: ./gradlew --no-daemon clean test :codeCoverageReport -Pjacoco
- name: Upload coverage to codecov.io
uses: codecov/codecov-action@v3