Typecast support callable with arguments #1125
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: build | |
on: | |
push: | |
branches: | |
- '2.*' | |
pull_request: null | |
jobs: | |
test: | |
needs: sqlite | |
name: Test PHP ${{ matrix.php-version }} with Code Coverage | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
php-version: | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
- "8.4" | |
steps: | |
- name: Install ODBC driver. | |
run: | | |
sudo curl https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list | |
sudo ACCEPT_EULA=Y apt-get install -y msodbcsql18 | |
- name: π¦ Checkout | |
uses: actions/checkout@v2 | |
- name: π οΈ Setup DB services | |
run: | | |
cd tests | |
docker compose up -d | |
cd .. | |
- name: π οΈ Setup PHP ${{ matrix.php-versions }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
coverage: pcov | |
tools: pecl | |
extensions: mbstring, pdo, pdo_sqlite, pdo_pgsql, pdo_sqlsrv, pdo_mysql | |
- name: π€ Validate composer.json and composer.lock | |
run: composer validate --ansi --strict | |
- name: π₯ Install dependencies with composer | |
uses: ramsey/composer-install@v3 | |
with: | |
dependency-versions: "highest" | |
- name: π Execute Tests | |
run: | | |
vendor/bin/phpunit --coverage-clover=coverage.clover | |
- name: Upload coverage to Codecov | |
continue-on-error: true # if is fork | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.clover | |
- name: Upload coverage to Scrutinizer | |
continue-on-error: true # if is fork | |
uses: sudo-bot/action-scrutinizer@latest | |
with: | |
cli-args: "--format=php-clover coverage.clover" | |
sqlite: | |
name: SQLite PHP ${{ matrix.php-version }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: | |
- ubuntu-latest | |
php-version: | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
- "8.4" | |
steps: | |
- name: π¦ Checkout | |
uses: actions/checkout@v2 | |
- name: π οΈ Setup DB services | |
run: | | |
cd tests | |
docker compose up -d | |
cd .. | |
- name: π οΈ Setup PHP ${{ matrix.php-versions }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
coverage: pcov | |
tools: pecl | |
extensions: mbstring, pdo, pdo_sqlite, pdo_pgsql, pdo_sqlsrv, pdo_mysql | |
- name: π€ Validate composer.json and composer.lock | |
run: composer validate --ansi --strict | |
- name: π₯ Install dependencies with composer | |
uses: ramsey/composer-install@v3 | |
with: | |
dependency-versions: "highest" | |
- name: π Execute Tests | |
env: | |
DB: sqlite | |
run: | | |
vendor/bin/phpunit --group driver-sqlite --colors=always |