diff --git a/.gitea/workflows/build-dev.yaml b/.gitea/workflows/build-dev.yaml new file mode 100644 index 0000000..757fb30 --- /dev/null +++ b/.gitea/workflows/build-dev.yaml @@ -0,0 +1,41 @@ +name: CI +on: + push: + branches: [ dev ] +env: + JAVA_VERSION: '21' + GRADLE_VERSION: '8.14.5' + +jobs: + build: + name: Build and Test + runs-on: hostinger + timeout-minutes: 30 + + steps: + - name: Checkout repository + uses: actions/checkout@v6 + with: + fetch-depth: 1 + + - name: Set up JDK + uses: actions/setup-java@v5 + with: + distribution: 'temurin' + java-version: ${{ env.JAVA_VERSION }} + + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v6 + with: + gradle-version: ${{ env.GRADLE_VERSION }} + # Only the main branch writes to the cache; PRs/feature branches read-only + cache-read-only: false + + - name: Validate Gradle wrapper + uses: gradle/wrapper-validation-action@v3 + with: + distribution-type: 'bin' + version: ${{ env.GRADLE_VERSION }} + + - name: Run Gradle build + run: ./gradlew build --no-daemon