feat: php74 compat #3
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: Continuous Integration | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
static-tests: | |
name: Validate Format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Validate Manifest | |
run: composer validate | |
- name: Validate XML format | |
run: sudo apt-get install libxml2-utils -y && find . -type f -name '*.xml' -exec xmllint --noout {} + | |
tests: | |
name: Tests | |
needs: static-tests | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- PHP_VERSION: php83-fpm | |
MAGENTO_VERSION: 2.4.7-p3 | |
- PHP_VERSION: php82-fpm | |
MAGENTO_VERSION: 2.4.6-p8 | |
- PHP_VERSION: php81-fpm | |
MAGENTO_VERSION: 2.4.5-p10 | |
- PHP_VERSION: php81-fpm | |
MAGENTO_VERSION: 2.4.4-p11 | |
- PHP_VERSION: php74-fpm | |
MAGENTO_VERSION: 2.4.3-p2 # @TODO: -p3 missing from upstream containers | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Start Docker | |
run: docker run --detach --name magento-project-community-edition michielgerritsen/magento-project-community-edition:${{ matrix.PHP_VERSION }}-magento${{ matrix.MAGENTO_VERSION }} | |
- name: Upload our code into the docker container | |
run: docker cp $(pwd) magento-project-community-edition:/data/extensions/ | |
- name: Install the extension in Magento | |
run: docker exec magento-project-community-edition composer require samjuk/m2-module-media-proxy:@dev | |
- name: Run PHPStan | |
run: docker exec magento-project-community-edition bash -c "vendor/bin/phpstan analyse -c extensions/${{ github.event.repository.name }}/phpstan.neon extensions/${{ github.event.repository.name }}" | |
- name: Run PHPCS | |
run: docker exec magento-project-community-edition bash -c "vendor/bin/phpcs --standard=Magento2 --extensions=php,phtml -p extensions/${{ github.event.repository.name }} --severity=6" | |
- name: Run Unit Tests | |
run: docker exec magento-project-community-edition bash -c "vendor/bin/phpunit extensions/${{ github.event.repository.name }}/Test/Unit" | |
- name: Code Compilation Test | |
run: docker exec magento-project-community-edition bash -c "php bin/magento setup:di:compile" | |
- name: Run Integration Tests | |
run: docker exec magento-project-community-edition bash -c "php bin/magento deploy:mode:set developer && cd /data/dev/tests/integration/ && ../../../vendor/bin/phpunit" |