Skip to content

Change ruby support (and testing) to remove < 3.0, and add 3.2 and 3.3 #38

Change ruby support (and testing) to remove < 3.0, and add 3.2 and 3.3

Change ruby support (and testing) to remove < 3.0, and add 3.2 and 3.3 #38

Workflow file for this run

name: Test
on: push
jobs:
# test_rails:
# runs-on: ubuntu-latest
# services:
# postgres:
# image: postgres
# env:
# POSTGRES_PASSWORD: postgres
# options: >-
# --health-cmd pg_isready
# --health-interval 10s
# --health-timeout 5s
# --health-retries 5
# ports:
# - 5432:5432
# steps:
# - uses: actions/checkout@v3
# - name: Install postgresql-client
# run: |
# sudo apt-get update
# sudo apt-get install -y libpq-dev
# - uses: ruby/setup-ruby@v1
# with:
# ruby-version: "2.6"
# bundler-cache: true # runs 'bundle install' and caches installed gems automatically
# - name: Test clean install in Rails
# env:
# DATABASE_URL: postgres://postgres:postgres@localhost/qctest523
# run: |
# cd test/rails-tests/
# sh rails523.sh
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby_version: ['3.0', '3.1', '3.2', '3.3']
services:
postgres:
image: postgres
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
- name: Install postgresql-client
run: |
sudo apt-get update
sudo apt-get install -y libpq-dev
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: bundle exec rake
env:
RAILS_ENV: test
RACK_ENV: test
QC_DATABASE_URL: postgres://postgres:postgres@localhost/postgres
DATABASE_URL: postgres://postgres:postgres@localhost/postgres
QC_BENCHMARK: true
QC_BENCHMARK_MAX_TIME_DEQUEUE: 60
QC_BENCHMARK_MAX_TIME_ENQUEUE: 10