Testing CLI #3
Workflow file for this run
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: test-cli | |
run-name: Testing CLI | |
on: | |
push: | |
branches: | |
- tests | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v3 | |
- name: Setup PHP with PECL extension | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
extensions: zip, mbstring | |
- name: Setup Dependencies | |
run: composer install --no-interaction --no-progress | |
- name: Run Test | |
run: vendor/bin/pest |