Skip to content

Commit

Permalink
Update and rename build.yml to pull-request-tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ayushsarode authored Oct 6, 2023
1 parent 80e6b89 commit a434a83
Showing 1 changed file with 11 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@
name: Build and Test
name: Run Tests on Pull Requests

on:
pull_request:
types:
- opened
- edited
- reopened
- synchronize
- ready_for_review
- unlocked
branches:
- main

jobs:
build:
runs-on: ubuntu-lates
runs-on: ubuntu-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up Java
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: '17'

- name: Build and Verify
run: |
./mvnw clean verify
working-directory: ./3scale-cms

0 comments on commit a434a83

Please sign in to comment.