on: pull_request: push: branches: - main jobs: check: runs-on: ubuntu-latest continue-on-error: true strategy: matrix: ruby: [ '2.7', '3.0', '3.1' ] 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