Skip to content

chore(1.x): release 1.1.0 #15

chore(1.x): release 1.1.0

chore(1.x): release 1.1.0 #15

Workflow file for this run

---
name: 🐬 SQLite
on: # yamllint disable-line rule:truthy
pull_request:
branches:
- 1.x
push:
branches:
- 1.x
jobs:
acceptance:
name: SQLite · PHP ${{ matrix.php-version }}
timeout-minutes: 5
runs-on: ubuntu-latest
concurrency:
cancel-in-progress: true
group: sqlite-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}-${{ matrix.php-version }}
strategy:
fail-fast: false
matrix:
php-version:
- '8.2'
- '8.3'
- '8.4'
- '8.5'
steps:
- name: 📦 Check out the codebase
uses: actions/checkout@v6
- name: 🛠️ Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: pdo, pdo_sqlite
ini-values: error_reporting=E_ALL
- name: 📥 Install dependencies with composer
uses: ramsey/composer-install@v3
env:
COMPOSER_ROOT_VERSION: '1.x-dev'
with:
dependency-versions: highest
- name: 🧪 Run acceptance tests (SQLite)
run: composer test:sqlite