Alif Rachmawadi b14481040a
Some checks failed
Main workflow / Run (macos-latest) (push) Failing after 3s
Main workflow / Run (ubuntu-latest) (push) Failing after 19m41s
Main workflow / Run (windows-latest) (push) Has been cancelled
updated lib
2019-08-16 15:36:09 +07:00
2019-08-16 15:34:20 +07:00
2019-08-14 07:34:44 +07:00
2019-08-16 15:36:09 +07:00
2019-08-13 18:29:11 +07:00
2019-08-13 18:52:19 +07:00
2019-08-15 12:44:24 +07:00
2019-08-13 17:11:30 +07:00
2019-08-13 17:11:30 +07:00
2019-08-14 05:45:22 +07:00
2019-08-13 17:11:30 +07:00
2019-08-13 17:11:30 +07:00
2019-08-16 09:16:46 +07:00
2019-08-16 09:16:46 +07:00
2019-08-16 09:28:18 +07:00
2019-08-13 17:11:30 +07:00

flutter-action

This action sets up a flutter environment for use in actions. It works on Linux, Windows, and macOS.

Usage

steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
  with:
    java-version: '12.x'
- uses: subosito/flutter-action@v1
  with:
    version: '1.7.8+hotfix.4'
- run: flutter pub get
- run: flutter test
- run: flutter build apk

Matrix Testing:

jobs:
  test:
    name: Test on ${{ matrix.os }}
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: [ubuntu-latest, windows-latest, macos-latest]
    steps:
      - uses: actions/checkout@v1
      - uses: actions/setup-java@v1
        with:
          java-version: '12.x'
      - uses: subosito/flutter-action@v1
        with:
          version: '1.7.8+hotfix.4'
      - run: flutter pub get
      - run: flutter test
      - run: flutter build apk
Description
No description provided
Readme 1.4 MiB
Languages
Shell 100%