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

update readme

This commit is contained in:
Alif Rachmawadi 2022-01-06 11:12:10 +00:00
parent 59a5481c7d
commit 8af4ab61aa
No known key found for this signature in database
GPG key ID: DD1F490C879BFA91

View file

@ -113,22 +113,3 @@ jobs:
- run: flutter build windows - run: flutter build windows
``` ```
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@v2
- uses: subosito/flutter-action@v2
with:
flutter-version: '1.20.2'
channel: 'beta'
- run: dart --version
- run: flutter --version
```