Skip to content

Set up to build in Dalet's OSS Github organisation #3

Set up to build in Dalet's OSS Github organisation

Set up to build in Dalet's OSS Github organisation #3

Workflow file for this run

name: 'CI Build'
on:
workflow_dispatch:
push:
branches:
- 'master'
- 'maint/*'
pull_request:
types: [ opened, reopened, edited, synchronize ]
branches:
- 'master'
- 'maint/*'
concurrency:
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
cancel-in-progress: false
jobs:
compile-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Java and Maven
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '8'
cache: 'maven'
cache-dependency-path: 'pom.xml'
- name: Compile
run: mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V
- name: Run tests
run: mvn test -B