Merge pull request #100 from worksome/feature/phpspreadsheet-1.x #1187
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
name: Code Analysis | |
on: | |
push: | |
schedule: | |
- cron: '0 7 * * *' | |
jobs: | |
code_analysis_composer: | |
name: ${{ matrix.actions.name }} on PHP ${{ matrix.php }} | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [ '8.2' ] | |
actions: | |
- name: ECS | |
run: 'composer test:style' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- name: Install Composer dependencies | |
uses: ramsey/composer-install@v3 | |
- run: ${{ matrix.actions.run }} |