Added readme #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- master # Run only on pushes to the main branch | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v2 | |
- name: Set up JDK 22 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '22' | |
cache: maven # Enable dependency caching for faster builds | |
- name: Build and test | |
run: mvn clean install |