Skip to content

Add workflow to test CDK code #1

Add workflow to test CDK code

Add workflow to test CDK code #1

Workflow file for this run

name: Build and Test the Code
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Java 17
uses: actions/setup-java@v4
with:
distribution: 'corretto'
java-version: '17'
- name: Run build and test
run: |
./gradlew clean build