Bump phpoffice/phpspreadsheet from 1.29.0 to 1.29.2 #453
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
--- | |
########################### | |
########################### | |
## Linter GitHub Actions ## | |
########################### | |
########################### | |
name: Lint Code Base | |
# | |
# Documentation: | |
# https://help.github.com/en/articles/workflow-syntax-for-github-actions | |
# | |
############################# | |
# Start the job on all push # | |
############################# | |
on: | |
push: | |
############### | |
# Set the Job # | |
############### | |
jobs: | |
run-linters: | |
name: Run linters | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out Git repository | |
uses: actions/checkout@v2 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "8.3" | |
coverage: none | |
tools: composer, phpcs | |
extensions: exif, gd, zip | |
- name: Install PHP dependencies | |
run: | | |
composer install --prefer-dist --no-progress --no-ansi --no-interaction | |
echo "${PWD}/vendor/bin" >> $GITHUB_PATH | |
- name: Run linters | |
uses: wearerequired/lint-action@v1 | |
with: | |
php_codesniffer: true | |
php_codesniffer_args: "-n --standard=psr2 --ignore=vendor,storage,public,docs,bootstrap,node_modules,resources,database,test,config,server.php" |