Files
flutter-action/README.md

44 lines
899 B
Markdown
Raw Normal View History

2019-08-13 17:11:30 +07:00
# flutter-action
2019-08-14 05:45:49 +07:00
This action sets up a flutter environment for use in actions. It works on Linux, Windows, and macOS.
2019-08-13 17:11:30 +07:00
# Usage
```yaml
steps:
2019-08-14 05:45:49 +07:00
- uses: actions/checkout@master
2019-08-13 17:11:30 +07:00
- uses: actions/setup-java@v1
with:
2019-08-14 05:45:49 +07:00
java-version: '12.x'
2019-08-13 17:11:30 +07:00
- uses: subosito/flutter-action@master
with:
2019-08-13 19:01:25 +07:00
version: '1.7.8+hotfix.4'
2019-08-14 05:45:49 +07:00
- run: flutter pub get
- run: flutter test
2019-08-13 17:11:30 +07:00
- run: flutter build apk
```
2019-08-14 05:45:49 +07:00
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
```