Skip to content

Fix: Add lazy loading of Twig (#71) #177

Fix: Add lazy loading of Twig (#71)

Fix: Add lazy loading of Twig (#71) #177

Workflow file for this run

name: Tests (8.x)
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
code_style:
name: Test code style
runs-on: ubuntu-latest
strategy:
matrix:
version: ['8.2']
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.version }}
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Dependencies
run: composer install
- name: Test code style
run: composer fixer -- --dry-run
static_analysis:
name: Static analysis
runs-on: ubuntu-latest
strategy:
matrix:
version: ['8.2']
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.version }}
- name: Checkout Code
uses: actions/checkout@v2
- name: Install Dependencies
run: composer install
- name: Run static analysis
run: composer phpstan
# tests:
# name: Tests
# runs-on: ubuntu-latest
# strategy:
# matrix:
# version: ['8.0']
# steps:
# - name: Setup PHP
# uses: shivammathur/setup-php@v2
# with:
# php-version: ${{ matrix.version }}
# - name: Checkout Code
# uses: actions/checkout@v2
# with:
# submodules: true
# - name: Install Dependencies
# run: composer install
# - name: Run tests
# run: composer phpunit
# coverage:
# name: Report Coverage
# runs-on: ubuntu-latest
# steps:
# - name: Setup PHP
# uses: shivammathur/setup-php@v2
# with:
# php-version: 8.0
# - name: Checkout Code
# uses: actions/checkout@v2
# with:
# submodules: true
# - name: Install Dependencies
# run: composer install
# - name: Generate Coverage
# run: composer phpunit -- --coverage-clover ./build/logs/clover.xml
# - name: Download Coverage Client
# run: wget https://github.com/php-coveralls/php-coveralls/releases/download/v2.4.3/php-coveralls.phar
# - name: Publish Coverage (Coveralls)
# run: php php-coveralls.phar -v
# env:
# COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}