From e0b79254e2e1c4710a976a36a526a193e4f93dd4 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 2 Jan 2023 19:21:57 +0000 Subject: [PATCH] workflows/tests: only `brew tests --online` twice. Previously, we ran it 5 times (4 on Linux, 1 on macOS) which burned up our GitHub Actions token rate limit much quicker than is necessary. --- .github/workflows/tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cc3797d593..382e2dc5f1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -223,16 +223,16 @@ jobs: matrix: include: - name: tests (no-compatibility mode) - test-flags: --no-compat --online --coverage + test-flags: --no-compat --coverage runs-on: ubuntu-22.04 - name: tests (generic OS) - test-flags: --generic --online --coverage + test-flags: --generic --coverage runs-on: ubuntu-22.04 - name: tests (Ubuntu 22.04) test-flags: --online --coverage runs-on: ubuntu-22.04 - name: tests (Ubuntu 18.04) - test-flags: --online --coverage + test-flags: --coverage runs-on: ubuntu-18.04 steps: - name: Set up Homebrew