tests #173
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
on: | |
push: | |
branches: [ master ] | |
workflow_dispatch: | |
name: tests | |
jobs: | |
tests: | |
name: PHP-${{ matrix.php }}-${{ matrix.os }} | |
env: | |
extensions: json, pdo | |
tag: hleb2-php${{ matrix.php }}-${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
php: | |
- "8.2" | |
- "8.3" | |
steps: | |
- name: Install PHP with extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: ${{ env.extensions }} | |
ini-values: date.timezone='UTC' | |
coverage: none | |
tools: composer:v2 | |
- name: Check PHP | |
run: php -v | |
- name: Install framework | |
run: composer create-project phphleb/hleb ./${{ env.tag }} | |
- name: Framework version | |
run: php ./${{ env.tag }}/console --version | |
- name: Install tests | |
run: cd ./${{ env.tag }} && composer require phphleb/tests | |
- name: Set strict mode | |
run: php ./${{ env.tag }}/console reverse-strict-mode-feature --set | |
- name: Code reduction check | |
run: php ./${{ env.tag }}/console clearing-comment-feature | |
- name: Check autoloader | |
run: php ./${{ env.tag }}/console autoloader-support-feature | |
- name: Run tests | |
run: php ./${{ env.tag }}/vendor/phphleb/test-o/run ./vendor/phphleb/tests/ |