Skip to content

force to install jdk 17 #48

force to install jdk 17

force to install jdk 17 #48

Workflow file for this run

name: Build
on: [push]
concurrency:
group: gradle
# cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 1.17
- name: Build with Gradle
run: ./gradlew build -x test
- name: Test with Gradle Jacoco and Coveralls
run: ./gradlew test jacocoTestReport coveralls --no-daemon
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
format: jacoco