Skip to content

Update flow-frontend to latest main #28

Update flow-frontend to latest main

Update flow-frontend to latest main #28

Workflow file for this run

name: CI
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
cache: maven
- name: Compile
run: ./mvnw clean compile -P travis
- name: Test
run: ./mvnw test -P travis
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: flow-engine-framework/target/site/jacoco/jacoco.xml
fail_ci_if_error: true
verbose: true
- name: Install
run: ./mvnw install -P travis -DskipTests