Test that ed25519 keys are only accepted for RFC 9421 (#78) #625
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: PHPStan | |
| on: [push, pull_request] | |
| permissions: {} | |
| jobs: | |
| phpstan: | |
| name: PHPStan on PHP ${{ matrix.php-versions }} | |
| runs-on: ${{ matrix.operating-system }} | |
| permissions: | |
| contents: read | |
| strategy: | |
| matrix: | |
| operating-system: ['ubuntu-latest'] | |
| php-versions: ['8.4'] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f # v2.37.0 | |
| with: | |
| php-version: ${{ matrix.php-versions }} | |
| tools: phpstan:1 | |
| coverage: none | |
| - name: Install Composer dependencies | |
| uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # v4.0.0 | |
| - name: Initialize Database | |
| run: php cmd/init.php | |
| - name: Static Analysis | |
| run: vendor/bin/phpstan analyse --memory-limit 1024M |