From f051644c77f22d24e6eccaa0363ddecd61017de0 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Sat, 9 Sep 2023 08:48:52 +0200 Subject: [PATCH] [ticket/17176] Use matrix definitions for building build matrix PHPBB3-17176 --- .github/workflows/tests.yml | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 45c980e66d..f778693be1 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -466,25 +466,15 @@ jobs: runs-on: windows-latest strategy: matrix: + type: ['unit', 'functional'] include: - php: '8.1' db: "postgres" - type: 'unit' - php: '8.2' db: "postgres" - type: 'unit' #- php: '8.3' # db: "postgres" # type: 'unit' - - php: '8.1' - db: "postgres" - type: 'functional' - - php: '8.2' - db: "postgres" - type: 'functional' - #- php: '8.3' - # db: "postgres" - # type: 'functional' name: Windows - PHP ${{ matrix.php }} - ${{ matrix.db }} - ${{ matrix.type }}