Skip to content

Updated documentation. #26

Updated documentation.

Updated documentation. #26

Workflow file for this run

name: CI Build
on:
pull_request:
branches:
- "**"
jobs:
build:
name: Maven Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Java 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: 'temurin'
- name: Build with Maven
run: mvn verify --file skill-tree/pom.xml