Skip to content

Updates ci and coverity workflows to mvn_01 standards (#9) #7

Updates ci and coverity workflows to mvn_01 standards (#9)

Updates ci and coverity workflows to mvn_01 standards (#9) #7

Workflow file for this run

name: CI
on: [ push ]
jobs:
upload:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Cache Local Maven Repository
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: 8.0.292+10
distribution: 'adopt'
- name: Run CI
run: mvn --batch-mode clean verify package