Skip to content

Revision of UML transformations. #123

Revision of UML transformations.

Revision of UML transformations. #123

Workflow file for this run

# This workflow will verify a Java project with Maven
name: Maven Verify
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '4 2 * * 0' # once a week, Sundays at 02:04 UTC.
workflow_dispatch: # manual trigger
jobs:
verify:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Maven Verify
run: mvn -B -U clean verify