Skip to content

Problem 30

Problem 30 #188

Workflow file for this run

name: Java CI
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'zulu'
java-version: 17
cache: 'gradle'
- name: Run JUnit tests
run: ./gradlew build
- name: Publish Test Report
uses: mikepenz/[email protected]
if: always()
with:
report_paths: '**/build/test-results/test/TEST-*.xml'