Skip to content

Merge pull request #52 from BentoBoxWorld/copilot/fix-chat-functional… #10

Merge pull request #52 from BentoBoxWorld/copilot/fix-chat-functional…

Merge pull request #52 from BentoBoxWorld/copilot/fix-chat-functional… #10

Workflow file for this run

name: Build and Test
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
build-and-test:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Java 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn -B clean compile
- name: Run tests
run: mvn -B test