This repository has been archived by the owner on Oct 24, 2024. It is now read-only.
Update league/flysystem requirement from ^2.2 to ^3.18 #42
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
# It checks the syntax of the PHP code (using PHP-CS-Fixer) | |
name: "Linter: Code Syntax" | |
on: [push, pull_request] | |
jobs: | |
php-cs-fixer: | |
name: PHP-CS-Fixer | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: PHP-CS-Fixer | |
uses: docker://oskarstark/php-cs-fixer-ga | |
with: | |
args: --config=.project.php_cs --dry-run |