Skip to content

Merge pull request #4 from librarianphp/fix-tpl #25

Merge pull request #4 from librarianphp/fix-tpl

Merge pull request #4 from librarianphp/fix-tpl #25

Workflow file for this run

name: PHP Composer
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --prefer-dist --no-progress
- name: Run test suite
run: ./vendor/bin/pest
- name: Run php-cs-fixer
run: ./vendor/bin/php-cs-fixer fix