refactor:Add min/max validation constraint to attribute #254
Workflow file for this run
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
| name: Maven Regression Tests (localhost) | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| test_rest: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: maven | |
| - run: mvn clean | |
| - run: mvn compile | |
| - run: mvn jetty:run & | |
| - run: sleep 30 | |
| - run: mvn verify -P regression-test-rest | |
| test_ui: | |
| needs: test_rest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 17 | |
| cache: maven | |
| - run: mvn clean | |
| - run: mvn compile | |
| - run: mvn jetty:run & | |
| - run: sleep 30 | |
| - run: mvn verify -P regression-test-ui -D headless=true |