Skip to content

Feature upgrade dependencies #78

Feature upgrade dependencies

Feature upgrade dependencies #78

Workflow file for this run

# Main Continuous Integration workflow
name: Build
on:
push:
branches:
- master
- feature_*
- bugfix_*
- 2.x.x
pull_request:
branches:
- master
- feature_*
- bugfix_*
- 2.x.x
jobs:
build:
strategy:
matrix:
java: ["17"]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} - JDK ${{ matrix.java }}
steps:
- name: Support long paths for Windows
if: ${{ matrix.os == 'windows-latest' }}
run: git config --system core.longpaths true
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Cache Gradle caches
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ matrix.java }}-${{ matrix.os }}-gradle-caches-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ matrix.java }}-${{ matrix.os }}-gradle-caches-
- name: Cache Gradle wrapper
uses: actions/cache@v2
with:
path: ~/.gradle/wrapper
key: ${{ matrix.java }}-${{ matrix.os }}-gradle-wrapper-${{ hashFiles('**/*.gradle') }}
restore-keys: |
${{ matrix.java }}-${{ matrix.os }}-gradle-wrapper-
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
distribution: zulu
java-version: ${{ matrix.java }}
- name: Build
uses: gradle/gradle-build-action@v2
with:
arguments: clean build
- name: JaCoCo Coverage Report
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: gradle/gradle-build-action@v2
with:
arguments: jacocoTestReport
- name: Publish JaCoCo Coverage Report
if: ${{ matrix.os == 'ubuntu-latest' }}
uses: codecov/codecov-action@v2
with:
name: JaCoCo Report
files: build/reports/jacoco/test/jacocoTestReport.xml