#484 - user page navigation #974
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 & lint PHP stuff | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
paths: | |
- '**.php' | |
- 'composer.json' | |
- 'composer.lock' | |
- 'phpunit.xml' | |
- 'env.ci' | |
jobs: | |
test-and-lint-php: | |
name: Test & lint PHP stuff | |
timeout-minutes: 10 | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-22.04 | |
services: | |
pgsql: | |
image: postgres:15@sha256:8e97b8526ed19304b144f7478bc9201646acf0723cdc100e9bb7495712cbadb6 | |
env: | |
POSTGRES_DB: toby | |
POSTGRES_USER: toby | |
POSTGRES_PASSWORD: password | |
PGPASSWORD: password | |
ports: | |
- 5432:5432 | |
steps: | |
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0 | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Cache dependencies | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-composer-dependencies-${{ hashFiles('composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer-dependencies | |
- name: Setup PHP | |
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # 2.31.1 | |
with: | |
php-version: 8.3 | |
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, pdo_pgsql, intl, gd | |
coverage: none | |
- name: Install Composer dependencies | |
run: composer install --prefer-dist --no-interaction --no-suggest | |
- name: Run PHP linter | |
run: composer cs | |
- name: Execute tests | |
run: php artisan test --env=ci |