1
0
Fork 0
mirror of https://github.com/subosito/flutter-action.git synced 2024-08-16 10:19:50 +02:00
flutter/README.md

44 lines
879 B
Markdown
Raw Normal View History

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