Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/check-same-code-base.yml')
-rw-r--r--.github/workflows/check-same-code-base.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/check-same-code-base.yml b/.github/workflows/check-same-code-base.yml
new file mode 100644
index 0000000..4cf592d
--- /dev/null
+++ b/.github/workflows/check-same-code-base.yml
@@ -0,0 +1,34 @@
+name: Check same code base
+
+on:
+ pull_request:
+ push:
+ branches:
+ - main
+ - master
+ - stable*
+
+permissions:
+ contents: read
+
+jobs:
+ php-lint:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ php-versions: ["8.0"]
+
+ name: check-same-code-base
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+
+ - name: Set up php ${{ matrix.php-versions }}
+ uses: shivammathur/setup-php@v2
+ with:
+ php-version: ${{ matrix.php-versions }}
+ coverage: none
+
+ - name: check-same-code-base
+ run: make check-same-code-base