Repository maintenance, drop eoled PHP version #8
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: Package leanness | |
on: push | |
jobs: | |
test: | |
name: "Package leanness" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: | |
- "8.0" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: "${{ matrix.php }}" | |
- name: Install Composer dependencies | |
run: composer update --no-progress --prefer-dist --optimize-autoloader | |
- name: Validate package leanness | |
run: composer run-script validate-gitattributes |