Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Add comprehensive documentation, development roadmap, and modernize b… #97

Add comprehensive documentation, development roadmap, and modernize b…

Add comprehensive documentation, development roadmap, and modernize b… #97

Workflow file for this run

name: Build
on:
pull_request:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: ./mvnw clean package --file pom.xml --no-transfer-progress
- name: Run tests
run: ./mvnw test --no-transfer-progress
- name: Upload build artifacts
uses: actions/upload-artifact@v4
if: success()
with:
name: kottpd-jar
path: target/kottpd-*.jar
retention-days: 7