Skip to content

Attempt to fix workflow #9

Attempt to fix workflow

Attempt to fix workflow #9

Workflow file for this run

name: PHP Composer
on:
push:
branches: [ "2" ]
pull_request:
branches: [ "master", "2" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: curl, json
coverage: xdebug
tools: php-cs-fixer, phpunit
- name: Validate composer.json and composer.lock
run: composer validate
- 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 --prefer-dist --no-progress
# Add a test script to composer.json, for instance: "test": "vendor/bin/phpunit"
# Docs: https://getcomposer.org/doc/articles/scripts.md
# run the test server for the application's tests
- name: Start the test server
run: php -S localhost:8080 tests/server.php &
- name: Run test suite
run: phpunit tests