summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2021-07-06 15:52:30 +0200
committerGitHub <noreply@github.com>2021-07-06 15:52:30 +0200
commit87984399e3b18ac699c21c56cc3ebc56110bfc63 (patch)
tree3fcbf7c9d6d6870ace842557b820e5b939b97865
parent92164231cfaaee2f4d0dce182ff567840f5ab696 (diff)
parent5ae2e0f443e435eb2b863782225f054344185a06 (diff)
Merge pull request #2333 from nextcloud/feat/linting-1
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