Merge pull request #1395 from hydephp/realtime-compiler-dashboard-imp… #305
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# README: This workflow runs some tests intended to make sure that the package works smoothly. | |
# This file is not included when you install Hyde normally, however it is present | |
# when you create a project by using the GitHub template. Unless you want to | |
# contribute to the project, there's no reason for you to keep this file. | |
name: Hyde Tests | |
on: | |
push: | |
branches: [ "master", "develop" ] | |
pull_request: | |
branches: [ "master", "develop" ] | |
jobs: | |
hyde-tests-master: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
dependency-version: [composer, latest] | |
runs-on: ${{ matrix.os }} | |
name: Hyde tests - ${{ matrix.os }} (${{ matrix.dependency-version }}) | |
if: github.ref == 'refs/heads/master' | |
steps: | |
- uses: shivammathur/setup-php@16011a795d747d5f45038f96371c3b98aec5669d | |
with: | |
php-version: '8.1' | |
extensions: fileinfo | |
- uses: actions/checkout@v3 | |
- name: Require latest version | |
if: matrix.dependency-version == 'latest' | |
run: composer require hyde/framework:master hyde/testing | |
- name: Install additional dependencies | |
if: matrix.dependency-version != 'latest' | |
run: composer require hyde/testing --dev | |
- name: Download test runner configuration | |
run: curl https://raw.githubusercontent.com/hydephp/develop/master/packages/hyde/phpunit.xml.dist -o phpunit.xml.dist | |
- name: Execute tests (Unit and Feature tests) via Pest | |
run: vendor/bin/pest | |
hyde-tests-develop: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
php: [8.1, 8.2] | |
runs-on: ${{ matrix.os }} | |
name: Hyde tests - ${{ matrix.os }} ${{ matrix.php }} (develop) | |
if: github.ref == 'refs/heads/develop' | |
steps: | |
- uses: shivammathur/setup-php@16011a795d747d5f45038f96371c3b98aec5669d | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: fileinfo, zip | |
- uses: actions/checkout@v3 | |
- name: Require latest development version | |
run: composer require hyde/framework:dev-develop hyde/testing:dev-master | |
- name: Download test runner configuration | |
run: curl https://raw.githubusercontent.com/hydephp/develop/master/packages/hyde/phpunit.xml.dist -o phpunit.xml.dist | |
- name: Execute tests (Unit and Feature tests) via Pest | |
run: vendor/bin/pest |