Skip to content

Improving the Add Power Bill Screen #36

Improving the Add Power Bill Screen

Improving the Add Power Bill Screen #36

Workflow file for this run

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.
name: Dart
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.16.5'
- run: flutter --disable-analytics
working-directory: src/pocket_note
- run: flutter test
working-directory: src/pocket_note
- run: dart run build_runner build --delete-conflicting-outputs
working-directory: src/pocket_note
- run: flutter build apk
working-directory: src/pocket_note
- run: flutter build appbundle
working-directory: src/pocket_note