Skip to content

chore: changed workflow to GH action #5

chore: changed workflow to GH action

chore: changed workflow to GH action #5

Workflow file for this run

name: Run test on PRs and pushes
on:
push:
branches: [ "*" ]
pull_request:
branches: [ "*" ]
jobs:
gradle:
strategy:
matrix:
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 19
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Execute Gradle test
run: ./gradlew test --stacktrace --no-daemon --parallel