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.
This commit is contained in:
Mike McQuaid 2023-01-02 19:21:57 +00:00
parent 35e6627461
commit e0b79254e2
No known key found for this signature in database
GPG Key ID: 3338A31AFDB1D829

View File

@ -223,16 +223,16 @@ jobs:
matrix: matrix:
include: include:
- name: tests (no-compatibility mode) - name: tests (no-compatibility mode)
test-flags: --no-compat --online --coverage test-flags: --no-compat --coverage
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
- name: tests (generic OS) - name: tests (generic OS)
test-flags: --generic --online --coverage test-flags: --generic --coverage
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
- name: tests (Ubuntu 22.04) - name: tests (Ubuntu 22.04)
test-flags: --online --coverage test-flags: --online --coverage
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
- name: tests (Ubuntu 18.04) - name: tests (Ubuntu 18.04)
test-flags: --online --coverage test-flags: --coverage
runs-on: ubuntu-18.04 runs-on: ubuntu-18.04
steps: steps:
- name: Set up Homebrew - name: Set up Homebrew