Add PDO storage adapter. #432
Workflow file for this run
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: Tests | |
on: [ push, pull_request ] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
os: [ ubuntu-latest ] | |
php: [ 8.1, 8.2, 8.3 ] | |
dependency-version: [ prefer-lowest, prefer-stable ] | |
redis-version: [ 5, 6, 7 ] | |
name: P${{ matrix.php }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} - ${{ matrix.redis-version }} | |
env: | |
# The hostname used to communicate with the Redis service container | |
REDIS_HOST: redis | |
# The default Redis port | |
REDIS_PORT: 6379 | |
# MySQL | |
DB_DATABASE: test | |
DB_USER: test | |
DB_PASSWORD: test | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Cache dependencies | |
uses: actions/cache@v2 | |
with: | |
path: ~/.composer/cache/files | |
key: dependencies-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: redis, apcu | |
ini-values: apc.enable_cli='On',apc.shm_size = 256M | |
coverage: none | |
- name: Install dependencies | |
run: composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest | |
- name: Start Redis | |
uses: supercharge/redis-github-action@1.1.0 | |
with: | |
redis-version: ${{ matrix.redis-version }} | |
- name: Execute tests (PDO with Sqlite) | |
run: vendor/bin/phpunit | |
- name: Start MySQL | |
run: | | |
sudo /etc/init.d/mysql start | |
mysql -e "CREATE DATABASE IF NOT EXISTS $DB_DATABASE;" -u$DB_USER -p$DB_PASSWORD | |
- name: Execute PDO tests with MySQL | |
env: | |
TEST_PDO_DSN: 'mysql:host=localhost;dbname=test' | |
TEST_PDO_USERNAME: 'test' | |
TEST_PDO_PASSWORD: 'test' | |
run: vendor/bin/phpunit tests/Test/Prometheus/PDO |