Skip to content
This repository was archived by the owner on Dec 6, 2025. It is now read-only.

Update README.md

Update README.md #7

Workflow file for this run

name: Build Check
on:
push:
branches: [main]
pull_request:
types: [opened, synchronize, reopened]
permissions:
contents: read
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Build Project
run: ./gradlew build