From e2071021dd3f2c244b5fb53c4eee79ab638410b7 Mon Sep 17 00:00:00 2001 From: Andrea Pollastri Date: Mon, 13 Nov 2023 17:15:03 +0100 Subject: [PATCH] Fix --- .github/workflows/lint.yml | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 .github/workflows/lint.yml diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index a11090e..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,33 +0,0 @@ -name: CS Fixer - -on: - push: - pull_request: - paths: - - "**.php" - -jobs: - php-cs-fixer: - runs-on: ubuntu-latest - steps: - - name: Checkout Code - uses: actions/checkout@v3 - with: - ref: ${{ github.head_ref }} - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: "8.2" - extensions: mbstring, intl, gd, xml, dom, json, fileinfo, curl, zip, iconv - - - name: Install Dependencies - run: composer install --prefer-dist - - - name: Fix Style - run: ./vendor/bin/php-cs-fixer fix --diff --allow-risky=yes - - - name: Commit Changes - uses: stefanzweifel/git-auto-commit-action@v4 - with: - commit_message: Fix styling changes