reverting change #5
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: Atlas.Pdo CI | |
| on: | |
| push: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.txt' | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.txt' | |
| workflow_dispatch: | |
| env: | |
| fail-fast: true | |
| # PHP extensions required by Composer | |
| EXTENSIONS: pdo | |
| permissions: | |
| contents: read | |
| jobs: | |
| # PHPStan | |
| quality: | |
| name: "Validate Quality" | |
| if: "!contains(github.event.head_commit.message, 'ci skip')" | |
| permissions: | |
| contents: read | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| php: | |
| - '8.1' | |
| - '8.2' | |
| - '8.3' | |
| - '8.4' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Setup PHP" | |
| uses: shivammathur/[email protected] | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: ${{ env.EXTENSIONS }} | |
| env: | |
| COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: "Install development dependencies with Composer" | |
| uses: "ramsey/composer-install@v3" | |
| with: | |
| composer-options: "--prefer-dist" | |
| - name: "PHPStan" | |
| run: | | |
| composer stan | |
| unit-tests: | |
| needs: quality | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| name: Unit tests / PHP-${{ matrix.php }} | |
| runs-on: ubuntu-22.04 | |
| strategy: | |
| matrix: | |
| php: | |
| - '8.1' | |
| - '8.2' | |
| - '8.3' | |
| - '8.4' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: "Setup PHP" | |
| uses: shivammathur/[email protected] | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: ${{ env.EXTENSIONS }} | |
| env: | |
| COMPOSER_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: "Install development dependencies with Composer" | |
| uses: "ramsey/composer-install@v3" | |
| with: | |
| composer-options: "--prefer-dist" | |
| - name: "Run Unit Tests" | |
| if: always() | |
| run: | | |
| composer test |