docs: consolidate README into docs and add download link #8
Workflow file for this run
This file contains hidden or 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: PHP CI | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php-version: [8.3] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use PHP ${{ matrix.php-version }} | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| tools: composer | |
| - name: Install dependencies | |
| run: | | |
| composer install --no-progress --prefer-dist | |
| - name: Lint | |
| run: | | |
| composer lint |