Added issuing user id for user memberships #172
Workflow file for this run
This file contains hidden or 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: Automated Testing | |
| on: [ pull_request ] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "8.4" | |
| - name: Composer Install | |
| run: composer install --ignore-platform-reqs | |
| - name: Setup Application | |
| run: | | |
| cp .env.ci .env | |
| php artisan key:generate | |
| php artisan passport:keys | |
| - name: Run Tests | |
| run: vendor/bin/phpunit |