plz
Some checks failed
CI / Gradle / build (push) Failing after 15m59s

This commit is contained in:
2026-05-29 09:58:51 +03:00
commit 8dc151af96
7 changed files with 103 additions and 0 deletions

20
.gitea/workflows/ci.yml Normal file
View File

@@ -0,0 +1,20 @@
name: CI / Gradle
on:
push:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
java-version: '17'
distribution: 'temurin'
- name: Run Checkstyle
run: ./gradlew checkstyleMain
- name: Run tests with coverage
run: ./gradlew test jacocoTestReport
- name: Build project
run: ./gradlew build