From 63bee9fd12c80ac0be1bacb1cc2099a76afb9f65 Mon Sep 17 00:00:00 2001 From: Tony Messias Date: Mon, 11 Mar 2024 16:17:39 -0300 Subject: [PATCH] Tweaks workflows config --- .github/workflows/run-tests.yml | 25 +++---------------------- 1 file changed, 3 insertions(+), 22 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f8b19a83..628817f6 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,31 +9,12 @@ jobs: tests: strategy: matrix: - os: [Ubuntu, Windows, macOS] - php: [8.0, 8.1] - # php: [7.2, 7.3, 7.4, 8.0] - - include: - - os: Ubuntu - os-version: ubuntu-latest - - - os: Windows - os-version: windows-latest - - - os: macOS - os-version: macos-latest - - - os: macOS-11 - os-version: macos-11.0 - php: 8.0 - - - os: macOS-11 - os-version: macos-11.0 - php: 8.1 + os: [ubuntu-latest, windows-latest, macos-latest, macos-11] + php: [8.0, 8.1, 8.2] name: ${{ matrix.os }} - PHP ${{ matrix.php }} - runs-on: ${{ matrix.os-version }} + runs-on: ${{ matrix.os }} steps: - name: Checkout code