Skip to content

Commit

Permalink
chore: Add test build workflow and update build workflow to include i…
Browse files Browse the repository at this point in the history
…OS and Android builds
  • Loading branch information
DimaDemchenko committed Aug 12, 2024
1 parent 49cfce5 commit 44930e8
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: "Build iOS & Android"

on:
push:
branches:
- test
jobs:
build:
runs-on: macos-latest

steps:
- uses: actions/checkout@v4

- name: Set up Flutter
uses: subosito/flutter-action@v2
with:
channel: "stable"

- name: Check Java and environment
run: |
java -version
echo $JAVA_HOME
which java
- name: Get dependencies
run: flutter pub get

- name: Build Android APK
run: flutter build apk --release

0 comments on commit 44930e8

Please sign in to comment.