Skip to content

Made database structure. Started to implement the database system. Cr… #37

Made database structure. Started to implement the database system. Cr…

Made database structure. Started to implement the database system. Cr… #37

Workflow file for this run

name: CI
on:
pull_request:
branches: [ "main" ]
paths:
- "src/**"
- "pom.xml"
- ".github/workflows/**"
workflow_dispatch:
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 25
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: "25"
cache: maven
- name: Build and test with Maven
run: mvn -B clean verify