Skip to content

feat(1.0.0): architecture rewrite (Hexagonal) + CI & testing overhaul #3 #20

feat(1.0.0): architecture rewrite (Hexagonal) + CI & testing overhaul #3

feat(1.0.0): architecture rewrite (Hexagonal) + CI & testing overhaul #3 #20

Workflow file for this run

name: Build & Test
on:
push:
branches: [ main ]
pull_request:
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven (tests + coverage)
run: mvn -B -q -ntp clean verify
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: |
target/site/jacoco/jacoco.xml
target/site/jacoco-it/jacoco.xml
flags: codegen-blueprint
name: codegen-blueprint
fail_ci_if_error: false