Skip to content

Fixed prepWatch preprocessing into the wrong folder #56

Fixed prepWatch preprocessing into the wrong folder

Fixed prepWatch preprocessing into the wrong folder #56

Workflow file for this run

name: test
on:
pull_request:
branches:
- develop
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 22 for x64
uses: actions/setup-java@v4
with:
java-version: '22'
distribution: 'temurin'
architecture: x64
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v3
with:
gradle-version: 8.10.2
- name: Build
run: gradle build
- name: Upload Test Report
uses: actions/upload-artifact@v4
if: always()
with:
name: TestResult
path: build/test-results/test/*.xml
retention-days: 1