Forráskód Böngészése

:fire: CI: add PHPCS and enable PHP 8.4 for unit tests

smiley 1 éve
szülő
commit
542ad22c84
1 módosított fájl, 4 hozzáadás és 0 törlés
  1. 4 0
      .github/workflows/ci.yml

+ 4 - 0
.github/workflows/ci.yml

@@ -53,6 +53,9 @@ jobs:
       - name: "Run phan"
         run: php vendor/bin/phan --target-php-version=${{ matrix.php-version }}
 
+      - name: "Run PHP_CodeSniffer"
+        run: php vendor/bin/phpcs
+
 
   tests:
     name: "Unit Tests"
@@ -71,6 +74,7 @@ jobs:
           - "8.1"
           - "8.2"
           - "8.3"
+          - "8.4"
 
     steps:
       - name: "Checkout"