Skip to content

[DBZ] Enhance GitHub actions for sanity checks #5

[DBZ] Enhance GitHub actions for sanity checks

[DBZ] Enhance GitHub actions for sanity checks #5

Workflow file for this run

name: Build sanity for compilation
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache local Maven repository
uses: actions/cache@v3
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Verify code compilation
run: mvn clean verify -Dquick