Skip to content

Commit

Permalink
Updated system tests
Browse files Browse the repository at this point in the history
  • Loading branch information
markseuffert committed Nov 20, 2023
1 parent 1508888 commit 721424b
Showing 1 changed file with 15 additions and 12 deletions.
27 changes: 15 additions & 12 deletions .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,46 +24,49 @@ jobs:
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Set up test environment
run: php yellow.php skip installation
php-tests:
name: PHP ${{ matrix.php }}
extension-tests:
name: Extensions on ${{ matrix.os }}
strategy:
matrix:
php: [8.2, 8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0]
runs-on: ubuntu-latest
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
php-version: latest
extensions: curl, gd, mbstring, zip
ini-file: development
coverage: none
tools: none
- name: Set up problem matcher
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Set up test environment
run: php yellow.php skip installation
run: php .github/workflows/make-tests.php
- name: Run tests
run: php yellow.php generate tests
extension-tests:
name: Extensions
run: cd tests; php yellow.php generate tests
php-tests:
name: PHP ${{ matrix.php }} on ubuntu-latest
strategy:
matrix:
php: [8.2, 8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0]
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: latest
php-version: ${{ matrix.php }}
extensions: curl, gd, mbstring, zip
ini-file: development
coverage: none
tools: none
- name: Set up problem matcher
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json"
- name: Set up test environment
run: php .github/workflows/make-tests.php
run: php yellow.php skip installation
- name: Run tests
run: cd tests; php yellow.php generate tests
run: php yellow.php generate tests

0 comments on commit 721424b

Please sign in to comment.