Clean tempest install #13
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: tempest/clean QA trigger from tempest/framework | |
on: [push, workflow_dispatch] | |
jobs: | |
run-qa: | |
name: Run QA | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | |
coverage: pcov | |
- name: Require Tempest | |
run: composer require tempest/framework:dev-main | |
- name: List Installed Dependencies | |
run: composer show -D | |
- name: Install Tempest | |
run: php vendor/bin/tempest install --force | |
- name: Run Tempest console | |
run: php ./tempest | |
- name: Run Tempest Server in the background | |
run: php ./tempest serve & | |
- name: Try GET request | |
run: curl http://localhost:8000 |