Refactored workflow to run without custom actions #1467
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: PHP | |
on: | |
- pull_request | |
- push | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up PHP | |
uses: shivammathur/[email protected] | |
with: | |
php-version: '8.2' | |
tools: cs2pr | |
- name: Get Composer cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Cache Composer dependencies | |
uses: actions/[email protected] | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Install Composer dependencies | |
run: > | |
composer install | |
--no-interaction | |
--no-progress | |
--prefer-dist | |
- name: Run PHP_CodeSniffer | |
run: ./vendor/bin/phpcs -q --report=checkstyle | cs2pr | |
- name: Run PHPStan | |
run: ./vendor/bin/phpstan analyse | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Bring up containers | |
run: docker-compose up -d | |
- name: Initialise Litus | |
run: docker-compose run --rm php-cli init | |
- name: Test response | |
run: curl -fsSL -I --retry 5 --retry-delay 0 --retry-max-time 30 http://localhost:8080 |