Skip to content
This repository has been archived by the owner on Jun 12, 2024. It is now read-only.

Feature/48 coordinator second phase implementation back #64

Feature/48 coordinator second phase implementation back

Feature/48 coordinator second phase implementation back #64

Workflow file for this run

name: Server
on:
pull_request:
branches:
- main
paths:
- 'Server/**'
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: Server
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Java 17 with Maven
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
cache: 'maven'
- name: Build with Maven
run: ./mvnw compile -q
- name: Run tests with Maven
run: ./mvnw test -q