feat: Add input/output support for topology templates and fix validat… #19
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Java CI (Maven, Java 8) | |
| on: | |
| push: | |
| branches: [ main, master, toscaCodeGen ] | |
| pull_request: | |
| branches: [ main, master, toscaCodeGen ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| java: ['8'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up JDK | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java }} | |
| - name: Build with Maven | |
| run: mvn -B -DskipTests package |