Adding email template text - VNLA-8502 #422
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| concurrency: | |
| # Concurrency is only limited on pull requests. head_ref is only defined on PR triggers otherwise it will use the random run id and always build all pushes. | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| phpunit-tests: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| php-version: ["8.1", "8.2"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Installing PHP ${{ matrix.php-version }} | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php-version }} | |
| - name: Composer Install | |
| run: composer install --optimize-autoloader | |
| - name: PHPUnit | |
| run: ./vendor/bin/phpunit -c ./phpunit.xml.dist --exclude-group="large" |