Skip to content

remove scripting api's marked as unused #2

remove scripting api's marked as unused

remove scripting api's marked as unused #2

Workflow file for this run

name: Gradle CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
build:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Set up Java
uses: actions/setup-java@v5
with:
distribution: temurin
java-version: 21
cache: gradle
- name: Make Gradle wrapper executable
run: chmod +x ./gradlew
- name: Build and test
run: ./gradlew clean build