aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/michelf/php-markdown/.github
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2022-10-12 09:09:55 +0000
committerMario <mario@mariovavti.com>2022-10-12 09:09:55 +0000
commitd3856caf81c96b1ea2615a375122ca85e91a6fb3 (patch)
tree9e506b96668b45e1ced0a2ec701007a17e277d7a /vendor/michelf/php-markdown/.github
parente1f9b1c47d8f3ed3400465ec279e894a0d9255c5 (diff)
downloadvolse-hubzilla-d3856caf81c96b1ea2615a375122ca85e91a6fb3.tar.gz
volse-hubzilla-d3856caf81c96b1ea2615a375122ca85e91a6fb3.tar.bz2
volse-hubzilla-d3856caf81c96b1ea2615a375122ca85e91a6fb3.zip
composer update michelf/php-markdown
Diffstat (limited to 'vendor/michelf/php-markdown/.github')
-rw-r--r--vendor/michelf/php-markdown/.github/workflows/ci.yml30
1 files changed, 30 insertions, 0 deletions
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