Update php.yml #72
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: PHP Build | |
| on: | |
| push: | |
| branches: [ main , dev] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: true | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: 8.3 | |
| extensions: mbstring, sqlsrv, iconv | |
| tools: phpunit, composer | |
| - name: Install dependencies | |
| run: composer install --prefer-dist --no-progress | |
| - name: Execute Tests | |
| run: phpunit --configuration tests/phpunit.xml | |
| release_staging: | |
| name: Prepare Beta Release Branch | |
| needs: | |
| - "test" | |
| runs-on: ubuntu-latest | |
| if: github.ref == 'refs/heads/dev' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: google-github-actions/release-please-action@v3 | |
| with: | |
| release-type: php | |
| default-branch: dev | |
| config-file: release-please-config.json | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| release_prod: | |
| name: Prepare Production Release Branch | |
| needs: | |
| - "test" | |
| runs-on: ubuntu-latest | |
| if: github.ref == 'refs/heads/main' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: google-github-actions/release-please-action@v3 | |
| with: | |
| release-type: php | |
| config-file: release-please-config.json | |
| token: ${{ secrets.GITHUB_TOKEN }} |