Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

build: Disable temporally the signing of artifacts #13

build: Disable temporally the signing of artifacts

build: Disable temporally the signing of artifacts #13

Workflow file for this run

name: Java CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '11', '17', '20' ]
steps:
- uses: actions/checkout@v4
- uses: gradle/wrapper-validation-action@v1
- name: Set up JDK ${{ matrix.Java }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: adopt
cache: gradle
- name: Run the tests with Gradle
run: ./gradlew clean build --console=plain --no-daemon