Adding AssetField class #7
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: License Check | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| paths: | |
| - 'composer.lock' | |
| - 'composer.json' | |
| pull_request: | |
| paths: | |
| - 'composer.lock' | |
| - 'composer.json' | |
| jobs: | |
| license-check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| operating-system: [ 'ubuntu-latest' ] | |
| php-versions: [ '8.4' ] | |
| dependency-stability: [ 'prefer-none' ] | |
| name: P${{ matrix.php-versions }} - ${{ matrix.operating-system}} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install PHP versions | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| tools: "composer:v2" | |
| - name: Install dependencies | |
| run: composer install --prefer-dist --no-interaction | |
| - name: Run license check | |
| run: composer run license-check |