.github/workflows/check.yml in ably-1.1.6 vs .github/workflows/check.yml in ably-1.1.7

- old
+ new

@@ -8,11 +8,11 @@ check: runs-on: ubuntu-latest continue-on-error: true strategy: matrix: - ruby: [ '2.5', '2.6', '2.7' ] + ruby: [ '2.5', '2.6', '2.7', '3.0' ] protocol: [ 'json', 'msgpack' ] steps: - uses: actions/checkout@v2 with: submodules: 'recursive' @@ -23,5 +23,19 @@ - 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