Skip to content

feat: 为评估项新增超时时间与默认值配置 #45

feat: 为评估项新增超时时间与默认值配置

feat: 为评估项新增超时时间与默认值配置 #45

Workflow file for this run

name: Build and Test
on:
pull_request:
branches:
- main
- master
- develop
push:
branches:
- main
- master
- develop
jobs:
build:
name: Build with Maven
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: 'maven'
- name: Build with Maven
run: mvn clean install -B -V
- name: Run tests
run: mvn test -B
- name: Upload build artifacts
if: failure()
uses: actions/upload-artifact@v4
with:
name: build-logs
path: |
**/target/surefire-reports/
**/target/*.log
retention-days: 7