Sha256: 08bd07c6d4f0233b9a2c6564e3a183eb23ea926199caea8709bd0e3b75f98325
Contents?: true
Size: 628 Bytes
Versions: 3
Compression:
Stored size: 628 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 }} run: | gem install bundler bundle install --jobs 4 --retry 3 bundle exec rake rubocop bundle exec rake test
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
stream-chat-ruby-2.4.0 | .github/workflows/ci.yml |
stream-chat-ruby-2.3.0 | .github/workflows/ci.yml |
stream-chat-ruby-2.2.0 | .github/workflows/ci.yml |