Skip to content

Fix creation of stored procedures that contain insert statements #723

Fix creation of stored procedures that contain insert statements

Fix creation of stored procedures that contain insert statements #723

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Run test suite
runs-on: ubuntu-latest
env:
COMPOSE_FILE: docker-compose.ci.yml
strategy:
fail-fast: false
matrix:
ruby:
- 2.7.7
- 3.1.3
- 3.2.1
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build docker images
run: docker-compose build --build-arg TARGET_VERSION=${{ matrix.ruby }}
- name: Run tests
run: docker-compose run ci