commit df183e14b8ff738cac61e7575cd739680c75efd8
parent 9fce7f19fccf168e525a3af653486ac6b08c198a
Author: markseu <mark2011@mayberg.se>
Date: Fri, 24 Nov 2023 11:00:50 +0100
Updated system tests
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/.github/workflows/system-tests.yml b/.github/workflows/system-tests.yml
@@ -4,7 +4,7 @@ name: System tests
on: [push, pull_request]
jobs:
installation-tests:
- name: Installation on ${{ matrix.os }}
+ name: Installation on ${{ runner.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
@@ -25,7 +25,7 @@ jobs:
- name: Set up test environment
run: php yellow.php skip installation
extension-tests:
- name: Extensions on ${{ matrix.os }}
+ name: Extensions on ${{ runner.os }}
strategy:
matrix:
os: [ubuntu-latest]
@@ -48,7 +48,7 @@ jobs:
- name: Run tests
run: cd tests; php yellow.php generate tests
php-tests:
- name: PHP ${{ matrix.php }} on ubuntu-latest
+ name: PHP ${{ matrix.php }} on ${{ runner.os }}
strategy:
matrix:
php: [8.3, 8.2, 8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0]