feat: align Comfy CLI/MCP and harden Java 17 line #20
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
| # CI for the Java 17 / Jackson 2 line. | |
| name: CI | |
| on: | |
| push: | |
| branches: [feature/2.0.x, hardening/2.0.x] | |
| pull_request: | |
| branches: [feature/2.0.x] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: JDK 17 Build & Verify | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v7 | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: '17' | |
| cache: maven | |
| - name: Build and verify | |
| run: mvn -B --no-transfer-progress clean verify | |
| - name: Upload JaCoCo coverage report | |
| if: always() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: jacoco-coverage | |
| path: target/site/jacoco | |
| retention-days: 14 | |
| - name: Upload surefire reports | |
| if: always() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: surefire-reports | |
| path: target/surefire-reports | |
| retention-days: 14 |