chore: improve typo in text verbiage #264
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: WebPImageConverter CI | |
| on: | |
| push: | |
| permissions: | |
| contents: write | |
| jobs: | |
| php74: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v2 | |
| - name: Set up PHP v7.4 | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '7.4' | |
| extensions: gd, imagick, mbstring, zip, intl | |
| - name: Install Composer | |
| run: composer install | |
| - name: Linting | |
| run: composer run lint | |
| - name: Testing | |
| run: composer run test | |
| - name: Static Analysis | |
| run: composer run analyse | |
| php80: | |
| runs-on: ubuntu-latest | |
| needs: php74 | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v2 | |
| - name: Set up PHP v8.0 | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.0' | |
| extensions: gd, imagick, mbstring, zip, intl | |
| - name: Install Composer | |
| run: composer install | |
| - name: Linting | |
| run: composer run lint | |
| - name: Testing | |
| run: composer run test | |
| - name: Static Analysis | |
| run: composer run analyse | |
| php82: | |
| runs-on: ubuntu-latest | |
| needs: php80 | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v2 | |
| - name: Set up PHP v8.2 | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.2' | |
| extensions: gd, imagick, mbstring, zip, intl | |
| - name: Install Composer | |
| run: composer install | |
| - name: Linting | |
| run: composer run lint | |
| - name: Testing | |
| run: composer run test | |
| - name: Static Analysis | |
| run: composer run analyse |