PHPC-2695 Replace deprecated bson_append_array_begin with bson_append_array_unsafe_begin #1012
Workflow file for this run
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 validity of composer.json" | |
| on: | |
| pull_request: | |
| branches: | |
| - "v*.*" | |
| - "feature/*" | |
| push: | |
| branches: | |
| - "v*.*" | |
| - "feature/*" | |
| jobs: | |
| composer-validate: | |
| name: "Check validity of composer.json" | |
| runs-on: "ubuntu-24.04" | |
| steps: | |
| - name: "Checkout" | |
| uses: "actions/checkout@v6" | |
| with: | |
| submodules: true | |
| - name: "Install PHP" | |
| uses: "shivammathur/setup-php@v2" | |
| - name: "Run composer validate" | |
| run: "composer validate --strict" |