Skip to content

http -> https for the links #78

http -> https for the links

http -> https for the links #78

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [8, 11]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Build plugin
run: |
./gradlew downloadDependencies
mvn clean verify