chore: change namespace #11
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: PHP Test | |
on: [push] | |
jobs: | |
php-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' # Adjust the PHP version as needed | |
extensions: mbstring # Add necessary extensions | |
- name: Install dependencies | |
run: composer install | |
- name: Run PHP tests | |
run: ./vendor/bin/phpunit tests | |