Skip to content

Create GitHub workflow to run tests #3

Create GitHub workflow to run tests

Create GitHub workflow to run tests #3

Workflow file for this run

name: Tests
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-java@v4
with:
java-version: '17'
distribution: temurin
cache: gradle
- run: ./gradlew --no-daemon --stacktrace test