Skip to content

Update rjdemetra --> rjdverse #7

Update rjdemetra --> rjdverse

Update rjdemetra --> rjdverse #7

name: Build, test and deploy with Maven
on: [ push, pull_request ]
jobs:
build-and-test-job:
if: github.event_name == 'pull_request' || startsWith(github.ref, 'refs/heads/develop') || startsWith(github.ref, 'refs/tags/v')
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 21
cache: 'maven'
- name: Build and test with Maven
run: mvn -U -B -ntp verify