Skip to content

Update for osate 2.13 - minor additions #20

Update for osate 2.13 - minor additions

Update for osate 2.13 - minor additions #20

Workflow file for this run

name: Build and Test Project
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
types: [opened, reopened, edited]
workflow_dispatch:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set Up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Install Dependencies
run: sudo apt-get install -y pandoc
- name: Compile and Test Maven Project
run: mvn clean verify