Skip to content

Merge pull request #11 from Nosto/refactor/code-cleanup #31

Merge pull request #11 from Nosto/refactor/code-cleanup

Merge pull request #11 from Nosto/refactor/code-cleanup #31

Workflow file for this run

name: Tests
on: push
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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@v4
if: always()
with:
name: test-results
path: build/reports/tests/
retention-days: 3