Skip to content

Merge branch '3.0.x' of github.com:freefair/okhttp-spring-boot into 3… #744

Merge branch '3.0.x' of github.com:freefair/okhttp-spring-boot into 3…

Merge branch '3.0.x' of github.com:freefair/okhttp-spring-boot into 3… #744

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
jobs:
build:
name: build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java: [ 17 ]
steps:
- uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
- run: ./gradlew -V assemble -s
- run: ./gradlew -V check -s
- name: Upload Coverage Reports
run: |
./gradlew jacocoTestReport
bash <(curl -s https://codecov.io/bash)