Skip to content

add implementation - ArunMurugan0 #1

add implementation - ArunMurugan0

add implementation - ArunMurugan0 #1

Workflow file for this run

name: CI
on:
pull_request:
types: [opened]
jobs:
test:
name: Test
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '21'
- name: Build project
run: ./mvnw clean verify
- name: Run tests
run: ./test.sh ${{ github.event.pull_request.head.ref }}