Sha256: 115f31ccd5b44a525373e366822ef5f7881503f9cbc2a33439e89a505031b3ee
Contents?: true
Size: 655 Bytes
Versions: 2
Compression:
Stored size: 655 Bytes
Contents
name: test on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: ruby: ['2.5', '2.6', '2.7', '3.0'] services: redis: image: redis ports: - 6379:6379 steps: - uses: actions/checkout@v1 - uses: actions/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} - uses: actions/cache@v1 id: cache with: path: vendor/bundler key: ${{ hashFiles('Gemfile.lock') }}-${{ matrix.ruby }} - run: | gem install bundler bundle install --path=vendor/bundler bundle exec rspec bundle exec rubocop
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
redstream-0.4.2 | .github/workflows/test.yml |
redstream-0.4.1 | .github/workflows/test.yml |