5.1 add propel 2.0.0-beta3 to the dependencies (#40) #13
This file contains 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 Branch 5.1 | |
on: | |
push: | |
branches: | |
- '5.1' | |
pull_request: | |
branches: | |
- '5.1' | |
workflow_dispatch: | |
jobs: | |
testsuite: | |
name: "Test Suite" | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: [ '7.4', '8.0', '8.1' ] | |
symfony-version: [ '4.4', '5.0', '5.1', '5.2', '5.3', '5.4', '6.0', '6.1', '6.2', '6.3' ] | |
steps: | |
- name: Setup PHP, with composer and extensions | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
#extensions: json, libxml, pdo, pdo_mysql, pdo_sqlite, pdo_pgsql, sqlite3 | |
coverage: pcov | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ secrets.MY_PAT }} | |
- name: Composer get cache directory | |
id: composer-cache | |
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | |
- name: Composer cache dependencies | |
uses: actions/cache@v3 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }} | |
restore-keys: ${{ runner.os }}-composer- | |
- name: Composer install (Symfony version ${{ matrix.symfony-version }}) | |
run: composer install --prefer-dist --no-interaction | |
- name: Run tests | |
run: vendor/bin/phpunit --verbose --coverage-clover=Tests/coverage.xml | |
# - name: Code Coverage Report | |
# uses: codecov/codecov-action@v3 | |
# with: | |
# token: ${{ secrets.CODECOV_TOKEN }} | |
# file: ./Tests/coverage.xml | |
# fail_ci_if_error: true | |
# verbose: true |