Pārlūkot izejas kodu

Create PHP-Larastan.yml

Shlee 1 nedēļu atpakaļ
vecāks
revīzija
01757e76e9
1 mainītis faili ar 39 papildinājumiem un 0 dzēšanām
  1. 39 0
      .github/workflows/PHP-Larastan.yml

+ 39 - 0
.github/workflows/PHP-Larastan.yml

@@ -0,0 +1,39 @@
+name: PHP - Pint
+
+on:
+  push:
+    branches:
+      - dev
+      - staging
+  pull_request:
+    branches:
+      - dev
+      - staging
+
+jobs:
+  lint:
+    runs-on: ubuntu-latest
+    strategy:
+      fail-fast: true
+      matrix:
+        php: [8.4]
+
+    steps:
+      - name: Checkout code
+        uses: actions/checkout@v4
+
+      - name: Setup PHP
+        uses: shivammathur/setup-php@v2
+        with:
+          php-version: ${{ matrix.php }}
+          extensions: json, dom, curl, libxml, mbstring
+          coverage: none
+
+      - name: Install Composer dependencies
+        run: composer install --no-interaction --no-progress
+
+      - name: Run Larastan
+        run: ./vendor/bin/phpstan analyse
+
+#      - name: Commit linted files
+#        uses: stefanzweifel/git-auto-commit-action@v5