Skip to content

Bump spock from 2.3-groovy-3.0 to 2.3-groovy-4.0 #75

Bump spock from 2.3-groovy-3.0 to 2.3-groovy-4.0

Bump spock from 2.3-groovy-3.0 to 2.3-groovy-4.0 #75

Workflow file for this run

# This workflow will build a Java project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
name: Java CI with Gradle
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: '2'
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'adopt'
- name: Build with Gradle
run: ./gradlew build
- name: jacoco, coveralls
run: ./gradlew test jacocoTestReport coveralls