Skip to content

Merge pull request #193 from Divyeshhhh/updatepoly #133

Merge pull request #193 from Divyeshhhh/updatepoly

Merge pull request #193 from Divyeshhhh/updatepoly #133

Workflow file for this run

name: Run tests
on:
workflow_dispatch:
push:
branches:
- "main"
paths:
- "**.java"
pull_request:
paths:
- "**.java"
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up the Java JDK
uses: actions/setup-java@v3
with:
java-version: "17"
distribution: "adopt"
- name: Build tests
run: mvn -B test
- name: Run tests
run: mvn test