Skip to content

Disable configuration cache #34

Disable configuration cache

Disable configuration cache #34

Workflow file for this run

name: Tests
on:
pull_request:
workflow_dispatch:
jobs:
tests:
name: Run unit tests
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '11'
- name: Check public API
run: ./gradlew apiCheck
- name: Run tests
run: ./gradlew allTests