chore: implement Encoder/Decoder for simple api #50
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: Check | |
| on: | |
| workflow_dispatch: ~ | |
| push: | |
| branches: [main, '*.*.x'] | |
| pull_request: ~ | |
| concurrency: | |
| group: check-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| code-style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: make fixer-check rector-check | |
| composer: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: make composer-validate composer-normalize-check deps-analyze | |
| phpstan: | |
| runs-on: ubuntu-latest | |
| strategy: &strategy | |
| fail-fast: false | |
| matrix: | |
| php: [ 8.4, 8.5 ] | |
| deps: [ lowest, highest ] | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: PHP_IMAGE_VERSION=${{ matrix.php }} make install-${{ matrix.deps }} phpstan | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: *strategy | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - run: PHP_IMAGE_VERSION=${{ matrix.php }} make install-${{ matrix.deps }} test |