Revert "chore(deps): bump org.springframework:spring-webmvc from 5.3.… #76
This file contains 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 Test (REST) | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
test_rest_ENG: | |
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 verify -P regression-test-rest -D base.url=http://eng.elimu.ai | |
test_rest_TGL: | |
needs: test_rest_ENG | |
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 verify -P regression-test-rest -D base.url=http://tgl.elimu.ai | |
test_rest_HIN: | |
needs: test_rest_TGL | |
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 verify -P regression-test-rest -D base.url=http://hin.elimu.ai |