Skip to content

Merge pull request #8 from diffblue/thomas/addAutomatedRelease #29

Merge pull request #8 from diffblue/thomas/addAutomatedRelease

Merge pull request #8 from diffblue/thomas/addAutomatedRelease #29

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetch all history for all branches
- name: Set up JDK 8
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: '8'
- name: Run Spotless Check
run: mvn spotless:check
- name: Compile Project
run: mvn compile