Skip to content

Subscriptions demo app #439

Subscriptions demo app

Subscriptions demo app #439

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- gemfile: Gemfile
ruby: 3.2
- gemfile: Gemfile
ruby: 3.1
- gemfile: Gemfile
ruby: 2.7
- gemfile: gemfiles/graphql_2.2.0.gemfile
ruby: 3.1
- gemfile: gemfiles/graphql_2.1.0.gemfile
ruby: 3.1
- gemfile: gemfiles/graphql_2.0.0.gemfile
ruby: 3.1
- gemfile: gemfiles/graphql_1.13.9.gemfile
ruby: 3.1
steps:
- uses: actions/checkout@v2
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
- name: Run tests
run: |
gem install bundler -v 2.4.22
bundle install --jobs 4 --retry 3
bundle exec rake test