Skip to content

[AUTO] Increment version to 1.3.12-SNAPSHOT #646

[AUTO] Increment version to 1.3.12-SNAPSHOT

[AUTO] Increment version to 1.3.12-SNAPSHOT #646

Workflow file for this run

name: Build and Test
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
java: [8, 11, 14]
name: Build and Test JDK
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Java ${{ matrix.java }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build and Test
run: |
./gradlew build
- name: Publish to Maven Local
run: |
./gradlew publishToMavenLocal
- name: Upload Coverage Report
uses: codecov/codecov-action@v1
with:
file: ./build/reports/jacoco/test/jacocoTestReport.xml
flags: plugin