Skip to content

Add CI workflows for .NET and Java #1

Add CI workflows for .NET and Java

Add CI workflows for .NET and Java #1

Workflow file for this run

name: Java CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '17'
- name: Build with Maven
working-directory: src/Java
run: mvn -B test