adding listing & detail API on MYSQL #2
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: Laravel | |
on: | |
push: | |
branches: ["*"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
setup-php: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv | |
coverage: none | |
- name: Run composer install | |
run: composer install -n --prefer-dist | |
- name: Prepare Laravel Application | |
run: | | |
cp .env.ci .env | |
php artisan key:generate | |
pint: | |
runs-on: ubuntu-latest | |
needs: setup-php | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run Laravel Pint | |
run: ./vendor/bin/pint --test | |
phpstan: | |
runs-on: ubuntu-latest | |
needs: setup-php | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Run LaravelStan | |
run: ./vendor/bin/phpstan analyse |