Sha256: 41d111c24320801e35dec9356a73fb879cd3b03b1dd34100654f84818b5feea0
Contents?: true
Size: 1.05 KB
Versions: 6
Compression:
Stored size: 1.05 KB
Contents
on: pull_request: push: branches: - main jobs: check: runs-on: ubuntu-latest continue-on-error: true strategy: matrix: ruby: [ '2.5', '2.6', '2.7', '3.0' ] protocol: [ 'json', 'msgpack' ] steps: - uses: actions/checkout@v2 with: submodules: 'recursive' - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} bundler-cache: true - env: RSPEC_RETRY: true PARALLEL_TEST_PROCESSORS: 2 PROTOCOL: ${{ matrix.protocol }} run: ./spec/run_parallel_tests - uses: coverallsapp/github-action@1.1.3 with: github-token: ${{ secrets.GITHUB_TOKEN }} flag-name: run-ruby_${{ matrix.ruby }}-${{ matrix.protocol }}_protocol parallel: true finish: needs: check runs-on: ubuntu-latest steps: - name: Coveralls Finished uses: coverallsapp/github-action@1.1.3 with: github-token: ${{ secrets.github_token }} parallel-finished: true
Version data entries
6 entries across 6 versions & 2 rubygems