From f95c617ed5bf47a8f2f6de05ae59c7c91c9f411a Mon Sep 17 00:00:00 2001 From: Ondrej Mirtes Date: Sat, 12 Dec 2020 16:30:17 +0100 Subject: [PATCH] Use GitHub Actions instead of Travis CI --- .github/workflows/build.yml | 160 ++++++++++++++++++++++++++++++++++++ .travis.yml | 18 ---- README.md | 4 +- build-cs/.gitignore | 2 + build-cs/composer.json | 7 ++ build.xml | 73 ++++++---------- composer.json | 14 ++-- phpcs.xml | 2 +- 8 files changed, 205 insertions(+), 75 deletions(-) create mode 100644 .github/workflows/build.yml delete mode 100644 .travis.yml create mode 100644 build-cs/.gitignore create mode 100644 build-cs/composer.json diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..6dd4fac --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,160 @@ +# https://help.github.com/en/categories/automating-your-workflow-with-github-actions + +name: "Build" + +on: + pull_request: + push: + branches: + - "master" + +jobs: + lint: + name: "Lint" + runs-on: "ubuntu-latest" + + strategy: + matrix: + php-version: + - "7.1" + - "7.2" + - "7.3" + - "7.4" + - "8.0" + + steps: + - name: "Checkout" + uses: "actions/checkout@v2" + + - name: "Install PHP" + uses: "shivammathur/setup-php@v2" + with: + coverage: "none" + php-version: "${{ matrix.php-version }}" + + - name: "Validate Composer" + run: "composer validate" + + - name: "Install dependencies" + run: "composer install --no-interaction --no-progress --no-suggest" + + - name: "Update PHPUnit" + if: matrix.php-version == '7.4' || matrix.php-version == '8.0' + run: "composer require --dev phpunit/phpunit:'^9.5' --update-with-dependencies" + + + - name: "Lint" + run: "vendor/bin/phing lint" + + coding-standards: + name: "Coding Standard" + + runs-on: "ubuntu-latest" + + steps: + - name: "Checkout" + uses: "actions/checkout@v2" + + - name: "Install PHP" + uses: "shivammathur/setup-php@v2" + with: + coverage: "none" + php-version: "7.3" + + - name: "Validate Composer" + run: "composer validate" + + - name: "Install dependencies" + run: "composer install --no-interaction --no-progress --no-suggest" + + - name: "Lint" + run: "vendor/bin/phing lint" + + - name: "Coding Standard" + run: "vendor/bin/phing cs" + + tests: + name: "Tests" + runs-on: "ubuntu-latest" + + strategy: + fail-fast: false + matrix: + php-version: + - "7.1" + - "7.2" + - "7.3" + - "7.4" + - "8.0" + dependencies: + - "lowest" + - "highest" + + steps: + - name: "Checkout" + uses: "actions/checkout@v2" + + - name: "Install PHP" + uses: "shivammathur/setup-php@v2" + with: + coverage: "none" + php-version: "${{ matrix.php-version }}" + + - name: "Install lowest dependencies" + if: ${{ matrix.dependencies == 'lowest' }} + run: "composer update --prefer-lowest --no-interaction --no-progress --no-suggest" + + - name: "Install highest dependencies" + if: ${{ matrix.dependencies == 'highest' }} + run: "composer update --no-interaction --no-progress --no-suggest" + + - name: "Update PHPUnit" + if: matrix.php-version == '7.4' || matrix.php-version == '8.0' + run: "composer require --dev phpunit/phpunit:'^9.5' --update-with-dependencies" + + - name: "Tests" + run: "vendor/bin/phing tests" + + static-analysis: + name: "PHPStan" + runs-on: "ubuntu-latest" + + strategy: + fail-fast: false + matrix: + php-version: + - "7.1" + - "7.2" + - "7.3" + - "7.4" + - "8.0" + dependencies: + - "lowest" + - "highest" + + steps: + - name: "Checkout" + uses: "actions/checkout@v2" + + - name: "Install PHP" + uses: "shivammathur/setup-php@v2" + with: + coverage: "none" + php-version: "${{ matrix.php-version }}" + extensions: mbstring + tools: composer:v2 + + - name: "Install lowest dependencies" + if: ${{ matrix.dependencies == 'lowest' }} + run: "composer update --prefer-lowest --no-interaction --no-progress --no-suggest" + + - name: "Install highest dependencies" + if: ${{ matrix.dependencies == 'highest' }} + run: "composer update --no-interaction --no-progress --no-suggest" + + - name: "Update PHPUnit" + if: matrix.php-version == '7.4' || matrix.php-version == '8.0' + run: "composer require --dev phpunit/phpunit:'^9.5' --update-with-dependencies" + + - name: "PHPStan" + run: "vendor/bin/phing phpstan" diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 68eeec4..0000000 --- a/.travis.yml +++ /dev/null @@ -1,18 +0,0 @@ -language: php -php: - - 7.1 - - 7.2 - - 7.3 - - 7.4 - - master - -matrix: - allow_failures: - - php: master - -before_script: - - composer self-update - - composer update --no-interaction - -script: - - vendor/bin/phing diff --git a/README.md b/README.md index c2605f8..fac4f3f 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

PHPDoc-Parser for PHPStan

- Build Status + Build Status Latest Stable Version License PHPStan Enabled @@ -27,4 +27,4 @@ Afterwards you can either run the whole build including linting and coding stand or run only tests using - vendor/bin/phing tests \ No newline at end of file + vendor/bin/phing tests diff --git a/build-cs/.gitignore b/build-cs/.gitignore new file mode 100644 index 0000000..ff72e2d --- /dev/null +++ b/build-cs/.gitignore @@ -0,0 +1,2 @@ +/composer.lock +/vendor diff --git a/build-cs/composer.json b/build-cs/composer.json new file mode 100644 index 0000000..ea2bcb1 --- /dev/null +++ b/build-cs/composer.json @@ -0,0 +1,7 @@ +{ + "require-dev": { + "consistence/coding-standard": "^3.5", + "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", + "slevomat/coding-standard": "^4.7.2" + } +} diff --git a/build.xml b/build.xml index 0228a84..7d72b16 100644 --- a/build.xml +++ b/build.xml @@ -6,7 +6,6 @@ composer-install, lint, cs, - composer-normalize-check, tests, phpstan "/> @@ -33,31 +32,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - +