Skip to content

chore: removed deprecations and codestyle update #8

chore: removed deprecations and codestyle update

chore: removed deprecations and codestyle update #8

Workflow file for this run

name: whatwedoTwigBootstrapIconsBundle
on:
push:
branches:
- develop
- main
- feature/*
pull_request:
branches:
- develop
- main
jobs:
phpunit:
runs-on: ubuntu-latest
steps:
- uses: shivammathur/setup-php@2cb9b829437ee246e9b3cac53555a39208ca6d28
with:
php-version: '8.2'
- uses: actions/checkout@v2
- name: Install Dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Execute tests (Unit and Feature tests) via PHPUnit
run: vendor/bin/phpunit
- name: Check Code Styles
run: vendor/bin/ecs
- name: Check PHPStan
run: vendor/bin/phpstan analyze src tests --level 5