D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
t
/
a
/
t
/
tattooscyy
/
api2
/
vendor
/
web-token
/
jwt-framework
/
.github
/
workflows
/
Filename :
coding-standards.yml
back
Copy
name: Coding Standards on: [push] jobs: tests: runs-on: ${{ matrix.operating-system }} strategy: matrix: operating-system: [ubuntu-latest] php-versions: ['7.4'] name: PHP ${{ matrix.php-versions }} Test on ${{ matrix.operating-system }} steps: - name: Checkout uses: actions/checkout@v2 with: ref: ${{ github.head_ref }} - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} extensions: json, mbstring, openssl, gmp coverage: xdebug - name: Install Composer dependencies run: | composer update --no-progress --no-suggest --prefer-dist --optimize-autoloader - name: PHP-CS-FIXER run: composer test:syntax