JezK
Edit File: ci.yml
name: Continuous Integration on: [push] jobs: run: runs-on: ubuntu-latest strategy: matrix: php-versions: ['7.2', '7.3', '7.4', '8.0'] name: PHP ${{ matrix.php-versions }} steps: - uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-versions }} coverage: none - name: Validate composer.json and composer.lock run: composer validate - name: Install dependencies run: composer install --prefer-dist --no-progress --no-suggest - name: Run PHPUnit run: vendor/bin/phpunit - name: Run PHPCS run: vendor/bin/phpcs