This commit is contained in:
2026-05-07 21:13:17 +03:30
parent bc46d28fd5
commit 35224d0621
9 changed files with 513 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
name: Java CI with Maven
on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build and test with Maven
run: mvn -B test --file pom.xml