Skip to content

Fixed the tests to make them work with java 17 #32

Fixed the tests to make them work with java 17

Fixed the tests to make them work with java 17 #32

name: Build & Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
cache: 'gradle'
- name: Build with Gradle
run: ./gradlew build test jacocoTestReport
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3