Skip to content

Commit

Permalink
Create app_flow.yml
Browse files Browse the repository at this point in the history
This is the initial CICD set up
  • Loading branch information
myofficework000 committed Nov 10, 2023
1 parent fcd90d3 commit 1059ab3
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/app_flow.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1059ab3

Please sign in to comment.