Skip to content

chore: 更新 flow-frontend 子模块(0.2.0 版本升级 + 接口请求超时时间支持动态配置)issue #211 #23

chore: 更新 flow-frontend 子模块(0.2.0 版本升级 + 接口请求超时时间支持动态配置)issue #211

chore: 更新 flow-frontend 子模块(0.2.0 版本升级 + 接口请求超时时间支持动态配置)issue #211 #23

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: Install
run: ./mvnw install -P travis -DskipTests