Merge pull request #170 from JonasWanke/update-CI #2231
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build & Lint | |
on: | |
pull_request: | |
push: | |
branches: [main] | |
schedule: | |
- cron: 0 4 * * 1 | |
workflow_dispatch: | |
env: | |
JAVA_VERSION: 17 | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# TODO(JonasWanke): re-enable beta CI when next stable Flutter version | |
# including breaking changes to Color are released | |
flutterChannel: [stable] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: ${{ env.JAVA_VERSION }} | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.flutter-channel }} | |
- run: flutter --version | |
- run: flutter pub get | |
- run: flutter test | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# TODO(JonasWanke): re-enable beta CI when next stable Flutter version | |
# including breaking changes to Color are released | |
flutterChannel: [stable] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: ${{ env.JAVA_VERSION }} | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.flutter-channel }} | |
- run: flutter --version | |
- run: flutter pub get | |
- run: flutter analyze | |
build-example: | |
name: Build example | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# TODO(JonasWanke): re-enable beta CI when next stable Flutter version | |
# including breaking changes to Color are released | |
flutterChannel: [stable] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: zulu | |
java-version: ${{ env.JAVA_VERSION }} | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: ${{ matrix.flutter-channel }} | |
- run: flutter --version | |
- run: flutter pub get | |
working-directory: example | |
- run: flutter build apk | |
working-directory: example | |
- name: Upload APK as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: example-apk-flutter-${{ matrix.flutter-channel }} | |
path: example/build/app/outputs/apk/release/app-release.apk |