From 1059ab33793627f30a3fd54e45314c97f95318a2 Mon Sep 17 00:00:00 2001 From: ABHISHEK PATHAK <51234843+myofficework000@users.noreply.github.com> Date: Fri, 10 Nov 2023 18:04:30 +0300 Subject: [PATCH] Create app_flow.yml This is the initial CICD set up --- .github/workflows/app_flow.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .github/workflows/app_flow.yml diff --git a/.github/workflows/app_flow.yml b/.github/workflows/app_flow.yml new file mode 100644 index 0000000..5411297 --- /dev/null +++ b/.github/workflows/app_flow.yml @@ -0,0 +1,31 @@ +name: App Flow + +on: +push: +branches: +- main +pull_request: +branches: +- main + +jobs: +build: +name: Build and Test +runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v2 + + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + + - name: Set up Android SDK + uses: actions/setup-android@v2 + with: + sdk-version: '31' + + - name: Build with Gradle + run: ./gradlew build