Sha256: 8c5258fb7a3623dc53cd106eeaf2ccd609cced81547596b3658e7327202ed336

Contents?: true

Size: 702 Bytes

Versions: 4

Compression:

Stored size: 702 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: 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

4 entries across 4 versions & 1 rubygems

Version Path
graphql-stitching-0.2.3 .github/workflows/ci.yml
graphql-stitching-0.2.2 .github/workflows/ci.yml
graphql-stitching-0.2.1 .github/workflows/ci.yml
graphql-stitching-0.1.0 .github/workflows/ci.yml