Skip to content

apparently needed for compilation to work #4

apparently needed for compilation to work

apparently needed for compilation to work #4

Workflow file for this run

name: Tests
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
- name: Setup and execute Gradle 'test' task
uses: gradle/gradle-build-action@v2
with:
arguments: build -PignoreCheckFailures=true -PgithubUsername=${{ github.actor }} -PgithubPassword=${{ secrets.GITHUB_TOKEN }}
- name: Archive build output
uses: actions/upload-artifact@v2
if: always()
with:
name: test-results
path: build/reports/tests/
retention-days: 3