Sha256: 0e048689d3ab51de7b9baa5262c9928227aa42846a46e94f742afd85292db30c

Contents?: true

Size: 592 Bytes

Versions: 2

Compression:

Stored size: 592 Bytes

Contents

name: CI

on:
  push:
    branches:
      - master
  pull_request:
    types:
      - opened
      - synchronize
      - reopened

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        ruby: [2.6, 2.7, '3.0', head]
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true # runs 'bundle install' and caches installed gems automatically
    - env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
      run: bin/gem_rbs
    - run: bundle exec rake

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rbs_rails-0.8.2 .github/workflows/ci.yml
rbs_rails-0.8.1 .github/workflows/ci.yml