[prepared statements] fix for auto_encode_arrays, refactoring #210
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: Mini SQL Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
env: | |
PGHOST: localhost | |
PGPORT: 5432 | |
PGPASSWORD: postgres | |
PGUSER: postgres | |
MINI_SQL_MYSQL_HOST: 127.0.0.1 | |
MINI_SQL_MYSQL_PORT: 3306 | |
MINI_SQL_MYSQL_PASSWORD: mysql | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
name: Ruby ${{ matrix.ruby }} | |
services: | |
postgres: | |
image: postgres:10 | |
env: | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
mysql: | |
image: mysql:5.7 | |
env: | |
MYSQL_ROOT_PASSWORD: mysql | |
ports: | |
- 3306:3306 | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby: ["3.1", "3.2", "3.3"] | |
experimental: [false] | |
include: | |
- ruby: ruby-head | |
experimental: true | |
continue-on-error: ${{matrix.experimental}} | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- name: Bundler cache | |
uses: actions/cache@v2 | |
with: | |
path: vendor/bundle | |
key: ${{ runner.os }}-${{ matrix.ruby }}-gems-${{ hashFiles('**/Gemfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.ruby }}-gems- | |
- name: Create Databases | |
run: | | |
createdb test_mini_sql | |
mysql --host=127.0.0.1 --port=3306 --user=root --password=mysql -e 'CREATE DATABASE test_mini_sql' | |
- name: Setup gems | |
run: | | |
bundle config path vendor/bundle | |
bundle install --jobs 4 | |
- name: Tests | |
run: bundle exec rake test | |
- name: Rubocop | |
run: bundle exec rubocop | |
publish: | |
if: github.event_name == 'push' && github.ref == 'refs/heads/main' | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Release Gem | |
uses: discourse/publish-rubygems-action@v2 | |
env: | |
RUBYGEMS_API_KEY: ${{ secrets.RUBYGEMS_API_KEY }} | |
GIT_EMAIL: [email protected] | |
GIT_NAME: discoursebot |