1
0
Fork 0
mirror of https://github.com/subosito/flutter-action.git synced 2024-08-16 10:19:50 +02:00
Find a file
2019-12-30 06:15:53 +07:00
.github/workflows removed whitespace 2019-08-14 07:34:44 +07:00
__tests__ added more tests 2019-08-18 21:23:51 +07:00
lib remove unused hacks 2019-08-26 10:59:10 +07:00
node_modules update tool-cache 1.1.0 2019-08-26 10:58:41 +07:00
src remove unused hacks 2019-08-26 10:59:10 +07:00
.gitignore initial commit 2019-08-13 17:11:30 +07:00
.prettierrc.json initial commit 2019-08-13 17:11:30 +07:00
action.yml rename 2019-08-16 19:33:37 +07:00
jest.config.js initial commit 2019-08-13 17:11:30 +07:00
LICENSE initial commit 2019-08-13 17:11:30 +07:00
package-lock.json Bump handlebars from 4.1.2 to 4.5.3 2019-12-29 19:13:04 +00:00
package.json bump version 2019-08-26 11:54:54 +07:00
README.md update sample 2019-12-07 15:58:29 +07:00
tsconfig.json initial commit 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:
    flutter-version: '1.9.1+hotfix.6'
- run: flutter pub get
- run: flutter test
- run: flutter build apk

Use latest release for particular channel:

steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
  with:
    java-version: '12.x'
- uses: subosito/flutter-action@v1
  with:
    channel: 'stable' # or: 'dev' or 'beta'
- run: flutter pub get
- run: flutter test
- run: flutter build apk

Use latest release for particular version and/or channel:

steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
  with:
    java-version: '12.x'
- uses: subosito/flutter-action@v1
  with:
    flutter-version: '1.12.x' # you can use 1.12
    channel: 'dev' # optional, default to: 'stable'
- 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:
          flutter-version: '1.11.0'
          channel: 'beta'
      - run: flutter pub get
      - run: flutter test
      - run: flutter build apk

Articles