Add style property to the thumbnail image element #325
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
# Trigger the workflow on push or pull request, | |
# but only for the main branch | |
push: | |
branches: | |
- master | |
pull_request: | |
types: [ opened, labeled, synchronize ] | |
name: PHPStan Code Analysis | |
jobs: | |
phpstan: | |
if: contains(github.event.pull_request.labels.*.name, 'run analysis') | |
name: PHPStan | |
runs-on: ubuntu-latest | |
steps: | |
- name: "📥 Fetching Repository Contents" | |
uses: actions/checkout@v2 | |
- name: "💽 Installing PHP, Composer, CS2PR" | |
uses: shivammathur/[email protected] | |
with: | |
php-version: '7.4' | |
coverage: none | |
ini-values: display_errors = on, error_reporting = E_ALL | |
tools: phpstan, composer | |
- name: "💽 Installing Composer Packages" | |
run: composer install | |
- name: "🧪 Test" | |
run: vendor/bin/phpstan analyze ./ |