Skip to content

Update command names in README #14

Update command names in README

Update command names in README #14

Workflow file for this run

name: Standards Checks
on:
pull_request:
branches:
- master
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: [ '8.1' ]
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- 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
if: steps.composer-cache.outputs.cache-hit != 'true'
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run phpunit
id: phpunit
run: vendor/bin/phpunit
- name: Report phpunit
uses: LouisBrunner/[email protected]
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: PHPUnit Tests
conclusion: ${{ steps.phpunit.conclusion }}
- name: Run pint
id: pint
if: always()
run: vendor/bin/pint --test
- name: Report phpunit
uses: LouisBrunner/[email protected]
if: always()
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: Pint Coding Standards
conclusion: ${{ steps.pint.conclusion }}