Sha256: 77b470f677dc37c3a7aebfd00331b06d74c4a86c1b93f20fe4c8a0786b90bc8b

Contents?: true

Size: 775 Bytes

Versions: 14

Compression:

Stored size: 775 Bytes

Contents

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: gemfiles/graphql_1.13.gemfile
            ruby: 3.1
          - gemfile: Gemfile
            ruby: 2.7

    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
        bundle install --jobs 4 --retry 3
        bundle exec rake test

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
graphql-stitching-1.1.0 .github/workflows/ci.yml
graphql-stitching-1.0.6 .github/workflows/ci.yml
graphql-stitching-1.0.5 .github/workflows/ci.yml
graphql-stitching-1.0.4 .github/workflows/ci.yml
graphql-stitching-1.0.3 .github/workflows/ci.yml
graphql-stitching-1.0.2 .github/workflows/ci.yml
graphql-stitching-1.0.1 .github/workflows/ci.yml
graphql-stitching-1.0.0 .github/workflows/ci.yml
graphql-stitching-0.3.6 .github/workflows/ci.yml
graphql-stitching-0.3.4 .github/workflows/ci.yml
graphql-stitching-0.3.3 .github/workflows/ci.yml
graphql-stitching-0.3.2 .github/workflows/ci.yml
graphql-stitching-0.3.1 .github/workflows/ci.yml
graphql-stitching-0.3.0 .github/workflows/ci.yml