Skip to content

tmp

tmp #82

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
env:
jdk_version: 13
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup JDK ${{ env.jdk_version }}
uses: actions/setup-java@v1
with:
java-version: ${{ env.jdk_version }}
- name: Build
run: ./gradlew clean build
- name: Report coverage
run: ./gradlew test jacocoTestReport jacocoRoot/