This repository has been archived by the owner on Sep 5, 2024. It is now read-only.
Workflow run for pull request - 241 automation script #1
Workflow file for this run
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: Pull Request | |
run-name: Workflow run for pull request - ${{ github.event.pull_request.title }} | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
test-cases: | |
if: github.event_name == 'pull_request' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run test cases | |
run: | | |
mvn clean install |