Skip to content

Commit

Permalink
create android build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ksh-b committed Apr 28, 2024
1 parent 96c1845 commit f84af5f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Dart

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: checkout all the submodules
uses: actions/checkout@v4
with:
submodules: true

- name: Install dependencies
run: submodules/flutter/bin/flutter pub get

- name: Build
run: submodules/flutter/bin/flutter build apk --split-per-abi

0 comments on commit f84af5f

Please sign in to comment.