Feature/http query method #123
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: Tests | |
| on: | |
| push: ~ | |
| pull_request: ~ | |
| jobs: | |
| cs: | |
| name: Coding Standards | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.3 | |
| extensions: curl, mbstring | |
| coverage: none | |
| tools: composer:v2 | |
| - run: composer update --no-progress | |
| - run: vendor/bin/php-cs-fixer fix --dry-run --diff | |
| tests: | |
| name: Tests on PHP ${{ matrix.php }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php: ['8.3', '8.4', '8.5'] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: curl, mbstring | |
| coverage: none | |
| tools: composer:v2 | |
| - run: composer update --no-progress | |
| - run: vendor/bin/pest | |
| phpstan: | |
| name: PHPStan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.3 | |
| extensions: curl, mbstring | |
| coverage: none | |
| tools: composer:v2 | |
| - run: composer update --no-progress | |
| - run: vendor/bin/phpstan analyse --no-progress |