Update README.md #177
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: App | |
on: | |
push: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
permissions: | |
contents: read | |
jobs: | |
app: | |
runs-on: ubuntu-latest | |
env: | |
APP_ENV: test | |
DATABASE_URL: "postgresql://postgres:[email protected]:5432/panda?serverVersion=13&charset=utf8" | |
steps: | |
- | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.2' | |
- | |
uses: actions/checkout@v3 | |
- | |
name: Copy .env.test.local | |
run: php -r "file_exists('.env.test.local') || copy('.env.test', '.env.test.local');" | |
- | |
name: Setup PostgreSQL | |
uses: harmon758/postgresql-action@v1 | |
with: | |
postgresql version: "13" | |
postgresql password: "postgres" | |
- | |
name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php- | |
- | |
name: Install dependencies | |
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist | |
- | |
name: Create database | |
run: | | |
bin/console doctrine:database:create --if-not-exists | |
bin/console doctrine:migrations:migrate --no-interaction | |
- | |
name: Execute database schema validation | |
run: bin/console doctrine:schema:validate --skip-sync --no-interaction | |
- | |
name: Execute static analysis | |
run: | | |
composer run-script static-analyze:code-style | |
composer run-script static-analyze:phpstan | |
composer run-script static-analyze:psalm | |
- | |
name: Execute unit tests | |
run: composer run-script test:unit | |
- | |
name: Execute contract tests | |
run: composer run-script test:contract | |
- | |
name: Execute behavioral tests | |
run: composer run-script test:behavioral |