feat: 添加平台公钥加密功能及补充文档 #1761
This file contains 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: Lint | |
on: [push, pull_request] | |
jobs: | |
phpstan: | |
name: PHPStan | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Install Dependencies | |
run: composer install --no-progress | |
- name: Run PHPStan | |
run: ./vendor/bin/phpstan analyse --no-progress | |
php_cs_fixer: | |
name: PHP-CS-Fxier | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Install Dependencies | |
run: composer install --no-progress | |
- name: Run PHP-CS-Fxier | |
run: composer check-style |