From 8af4ab61aa48cf990a6550aec22cb25e11d8cf3c Mon Sep 17 00:00:00 2001 From: Alif Rachmawadi Date: Thu, 6 Jan 2022 11:12:10 +0000 Subject: [PATCH] update readme --- README.md | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/README.md b/README.md index 57f65e9..c5df85e 100644 --- a/README.md +++ b/README.md @@ -113,22 +113,3 @@ jobs: - 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 -```