Skip to content

Tests and small things #1

Tests and small things

Tests and small things #1

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'corretto'
- name: Run tests
run: ./gradlew test
- name: Report test results
uses: mikepenz/action-junit-report@v4
if: success() || failure()