Skip to content

Merge pull request #131 from BrewInteractive/dependabot/github_action… #661

Merge pull request #131 from BrewInteractive/dependabot/github_action…

Merge pull request #131 from BrewInteractive/dependabot/github_action… #661

Workflow file for this run

on:
# Trigger analysis when pushing in master or pull requests, and when creating
# a pull request.
push:
branches:
- main
- 'release/**'
pull_request:
types: [ opened, synchronize, reopened ]
name: Run Tests
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
- name: Set up JDK 19
uses: actions/setup-java@v3
with:
java-version: '19'
distribution: 'temurin'
cache: maven
- name: Run Tests
run: mvn test