Skip to content

Run the automation batch #1

Run the automation batch

Run the automation batch #1

name: Run the automation batch
on: workflow_dispatch
jobs:
build:
name: run-workflow
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '11'
- name: Cache Maven dependencies
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven
- name: Run Rest Assured Test Cases
run: mvn clean test