Sha256: d60f008f11fa96fb3f60adfd9e86177524afb1373c0ea3c0cccdf36e5b3466df
Contents?: true
Size: 677 Bytes
Versions: 2
Compression:
Stored size: 677 Bytes
Contents
name: build on: [pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: [ '2.5', '2.6', '2.7' ] name: Ruby ${{ matrix.ruby }} sample steps: - uses: actions/checkout@v2 - uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - env: STREAM_CHAT_API_KEY: ${{ secrets.STREAM_CHAT_API_KEY }} STREAM_CHAT_API_SECRET: ${{ secrets.STREAM_CHAT_API_SECRET }} BLOCKLIST: ${{ matrix.ruby == '2.7' }} run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake rubocop bundle exec rake test
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
stream-chat-ruby-2.6.0 | .github/workflows/ci.yml |
stream-chat-ruby-2.5.0 | .github/workflows/ci.yml |