diff --git a/.gitea/workflows/mvnCICD.yaml b/.gitea/workflows/mvnCICD.yaml index c537cc6..3f23270 100644 --- a/.gitea/workflows/mvnCICD.yaml +++ b/.gitea/workflows/mvnCICD.yaml @@ -17,3 +17,18 @@ jobs: run: | ls ${{ gitea.workspace }} - run: echo "🍏 This job's status is ${{ job.status }}." + + mvnBuild: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v3 + with: + java-version: "17" + distribution: "temurin" + - name: Install Maven + run: | + sudo apt-get update + sudo apt-get install -y maven + - run: echo "Starting maven test cases..., this may take a couple minutes." + - run: mvn test -P Regression