Skip to content

Removed dependency on Ivy. #3

Removed dependency on Ivy.

Removed dependency on Ivy. #3

Workflow file for this run

name: Build And Test on All OSs
on: [ push, pull_request ]
jobs:
gradle:
strategy:
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
java: [ 11, 17 ]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
- uses: eskatos/gradle-command-action@v1
with:
arguments: check
- name: Publish Test Report
if: ${{ always() }}
uses: mikepenz/action-junit-report@v2
with:
report_paths: '**/build/test-results/test/TEST-*.xml'