summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2021-07-06 11:59:16 +0200
committerGitHub <noreply@github.com>2021-07-06 11:59:16 +0200
commit5ae2e0f443e435eb2b863782225f054344185a06 (patch)
tree06af91f7a3d4d5eb82696e85d3d58e27c3b64874
parent62d5a017141dbe590e0ae96fb1b7304bb29e556f (diff)
Create lint-php.yml
-rw-r--r--.github/workflows/lint-php.yml35
1 files changed, 35 insertions, 0 deletions
diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml
new file mode 100644
index 00000000..3e8bac9b
--- /dev/null
+++ b/.github/workflows/lint-php.yml
@@ -0,0 +1,35 @@
+# This workflow is provided via the organization template repository
+#
+# https://github.com/nextcloud/.github
+# https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization
+
+name: Lint
+
+on:
+ pull_request:
+ push:
+ branches:
+ - master
+ - stable*
+
+jobs:
+ lint:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ php-versions: ["7.3", "7.4", "8.0"]
+
+ name: php
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+
+ - name: Set up php ${{ matrix.php-versions }}
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: ${{ matrix.php-versions }}
+ coverage: none
+
+ - name: Lint
+ run: composer run lint