Skip to content

Commit

Permalink
Add more CI
Browse files Browse the repository at this point in the history
  • Loading branch information
erksch committed Feb 19, 2025
1 parent 2b0aa02 commit a01bfd0
Showing 1 changed file with 27 additions and 4 deletions.
31 changes: 27 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Kotlin test workflow
name: Test workflow
on: [push, pull_request]
jobs:
build:
Expand All @@ -12,9 +12,8 @@ jobs:
distribution: "temurin"
java-version: "17"
- run: ./gradlew build
working-directory: kotlin
build-example-project:
name: Build example project
name: Build example KMP project
runs-on: macos-latest
timeout-minutes: 45
steps:
Expand All @@ -24,4 +23,28 @@ jobs:
distribution: "temurin"
java-version: "17"
- run: ./gradlew build
working-directory: example/android
working-directory: example/android
build-ios-example-flutter-plugin-example-app:
name: Build example iOS app for the Flutter plugin of the example KMP project
runs-on: macos-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
- run: flutter build ios --no-codesign
working-directory: example/flutter/example
build-android-example-flutter-plugin-example-app:
name: Build example Android app for the Flutter plugin of the example KMP project
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "17"
- run: flutter build apk --no-codesign
working-directory: example/flutter/example

0 comments on commit a01bfd0

Please sign in to comment.