Skip to content

Add PostgreSQL backend scaffolding #881

Add PostgreSQL backend scaffolding

Add PostgreSQL backend scaffolding #881

name: MySQL Proxy Tests
on:
push:
branches:
- main
pull_request:
# Disable permissions for all available scopes by default.
# Any needed permissions should be configured at the job level.
permissions: {}
jobs:
test:
name: MySQL Proxy Tests
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
contents: read # Required to clone the repo.
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
coverage: none
- name: Install Composer dependencies
uses: ramsey/composer-install@v3
with:
ignore-cache: "yes"
composer-options: "--optimize-autoloader"
working-directory: packages/mysql-proxy
- name: Run MySQL Proxy tests
run: composer run test
working-directory: packages/mysql-proxy