Fix repeated word "the" in code comment https://github.com/hydephp/de… #432
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
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] | |
php: [8.1, 8.2, 8.3] | |
runs-on: ${{ matrix.os }} | |
name: Hyde tests - ${{ matrix.os }} ${{ matrix.php }} (${{ matrix.dependency-version }}) | |
if: github.ref == 'refs/heads/master' && github.event.repository.full_name == 'hydephp/hyde' | |
steps: | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: fileinfo, zip | |
- 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, 8.3] | |
runs-on: ${{ matrix.os }} | |
name: Hyde tests - ${{ matrix.os }} ${{ matrix.php }} (develop) | |
if: github.ref != 'refs/heads/master' && github.event.repository.full_name == 'hydephp/hyde' | |
steps: | |
- uses: shivammathur/setup-php@v2 | |
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 |