From d3856caf81c96b1ea2615a375122ca85e91a6fb3 Mon Sep 17 00:00:00 2001 From: Mario Date: Wed, 12 Oct 2022 09:09:55 +0000 Subject: composer update michelf/php-markdown --- .../michelf/php-markdown/.github/workflows/ci.yml | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 vendor/michelf/php-markdown/.github/workflows/ci.yml (limited to 'vendor/michelf/php-markdown/.github/workflows') diff --git a/vendor/michelf/php-markdown/.github/workflows/ci.yml b/vendor/michelf/php-markdown/.github/workflows/ci.yml new file mode 100644 index 000000000..4103c86da --- /dev/null +++ b/vendor/michelf/php-markdown/.github/workflows/ci.yml @@ -0,0 +1,30 @@ +name: CI +on: + pull_request: null + push: + branches: + - lib +jobs: + tests: + runs-on: ubuntu-latest + strategy: + matrix: + php: + - '7.4' + - '8.0' + - '8.1' + - '8.2' + + name: Linting - PHP ${{ matrix.php }} + steps: + - uses: actions/checkout@v2 + - uses: shivammathur/setup-php@v2 + with: + php-version: ${{ matrix.php }} + coverage: none + extensions: intl + - run: composer install --no-progress +# - run: composer codestyle + - run: composer phpstan + if: matrix.php == '8.1' + - run: composer tests -- cgit v1.2.3