Files
flutter-action/README.md
Alif Rachmawadi c9e501d1b1
Some checks failed
Main workflow / Run (macos-latest) (push) Failing after 1m42s
Main workflow / Run (ubuntu-latest) (push) Failing after 8m21s
Main workflow / Run (windows-latest) (push) Has been cancelled
updated readme
2019-08-14 05:45:49 +07:00

44 lines
899 B
Markdown

# flutter-action
This action sets up a flutter environment for use in actions. It works on Linux, Windows, and macOS.
# Usage
```yaml
steps:
- uses: actions/checkout@master
- uses: actions/setup-java@v1
with:
java-version: '12.x'
- uses: subosito/flutter-action@master
with:
version: '1.7.8+hotfix.4'
- run: flutter pub get
- run: flutter test
- run: flutter build apk
```
Matrix Testing:
```yaml
jobs:
test:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@master
- uses: actions/setup-java@v1.0.1
with:
java-version: '12.x'
- uses: subosito/flutter-action@master
with:
version: '1.7.8+hotfix.4'
- run: flutter pub get
- run: flutter test
- run: flutter build apk
```