Sha256: eb69605dc72bd1e607d9fc2c772cedaf5c426fa371655f1e4f13f16510a462b5

Contents?: true

Size: 770 Bytes

Versions: 2

Compression:

Stored size: 770 Bytes

Contents

name: test
on:
  push:
    branches: [master]
  pull_request:
    branches: [master]
    types: [opened, reopened, synchronize]
jobs:
  test:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        os: ["windows-latest", "ubuntu-latest"]
        ruby: ["2.7.x", "2.6.x", "2.5.x", "2.4.x"]
    steps:
      - uses: actions/checkout@v2
      - name: Set up Ruby
        uses: actions/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby }}
      - name: Set up Bundler
        run: gem install bundler --no-document
      - name: Install dependencies
        run: bundle install
      - name: Run test
        run: bundle exec rspec spec
      - name: Run cucumber tests
        if: matrix.os != 'windows-latest'
        run: bundle exec cucumber

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
apiaryio-0.14.1 .github/workflows/test.yml
apiaryio-0.14.0 .github/workflows/test.yml