Skip to content

Bump twig/twig from 3.14.0 to 3.14.1 #451

Bump twig/twig from 3.14.0 to 3.14.1

Bump twig/twig from 3.14.0 to 3.14.1 #451

Workflow file for this run

name: PHPUnit tests
on:
- push
- pull_request
jobs:
tests:
runs-on: ubuntu-latest
name: Tests on PHP 8.2
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
tools: composer:v2
coverage: pcov
- name: Install dependencies
run: composer install --no-interaction --prefer-dist
- name: Code style fixer
run: vendor/bin/php-cs-fixer fix . --dry-run --diff
- name: PHPStan
run: vendor/bin/phpstan analyse
- name: Run tests
run: make test
- name: Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make coverage