Resolve AT Protocol DIDs, handles, and schemas with intelligent caching for Laravel
at main 482 B view raw
1name: Code Style 2 3on: 4 pull_request: 5 branches: [ main, dev ] 6 7jobs: 8 php-cs-fixer: 9 runs-on: ubuntu-latest 10 11 steps: 12 - name: Checkout code 13 uses: actions/checkout@v4 14 15 - name: Setup PHP 16 uses: shivammathur/setup-php@v2 17 with: 18 php-version: 8.3 19 extensions: gmp, mbstring, json 20 coverage: none 21 tools: php-cs-fixer 22 23 - name: Run PHP CS Fixer 24 run: php-cs-fixer fix --dry-run --diff --verbose