From 10355840fd66e4898a5e43b9b0172c30fcc8f675 Mon Sep 17 00:00:00 2001 From: Aleksey Kulikov Date: Sat, 30 Oct 2021 11:30:17 +0300 Subject: [PATCH] run tests with 1 concurrent process --- .github/workflows/master.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 90ba2a5..43e8e66 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: false matrix: - platform: [ubuntu-latest, macos-11, windows-latest] + platform: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.platform }} steps: @@ -58,4 +58,4 @@ jobs: run: flutter pub run libgit2dart:setup - name: Run tests - run: flutter test --exclude-tags "remote_fetch" + run: flutter test -j 1 --exclude-tags "remote_fetch"