Client formatting hooks #574
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- gemfile: Gemfile | |
ruby: 3.3 | |
- gemfile: gemfiles/graphql_2.4.0.gemfile | |
ruby: 3.2 | |
- gemfile: gemfiles/graphql_2.3.0.gemfile | |
ruby: 3.2 | |
- 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_2.0.0.gemfile | |
ruby: 2.7 | |
steps: | |
- run: echo BUNDLE_GEMFILE=${{ matrix.gemfile }} > $GITHUB_ENV | |
- uses: actions/checkout@v4 | |
- 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 |