Skip to content

Commit

Permalink
Fix: coveralls closing builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
dblock committed Jul 14, 2024
1 parent efb0cb8 commit 96f1328
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- { ruby: "3.3" }
- { ruby: ruby-head, ignore: true }
- { ruby: jruby-head, ignore: true }
name: test (ruby=${{ matrix.entry.ruby }}, concurrency=${{ matrix.entry.concurrency || 'none' }})
name: test (ruby=${{ matrix.entry.ruby }}${{ matrix.entry.concurrency && ', concurrency=' }}${{ matrix.entry.concurrency }})
steps:
- name: Checkout
uses: actions/checkout@v4
Expand All @@ -35,8 +35,19 @@ jobs:
RACK_ENV: test
run: bundle exec rake
- name: Coveralls
uses: coverallsapp/github-action@master
uses: coverallsapp/github-action@v2
with:
parallel: true
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Coveralls Finished
uses: coverallsapp/github-action@master
flag-name: run-${{ matrix.entry.ruby }}${{ matrix.entry.concurrency && '-'}}${{ matrix.entry.concurrency }}

finish:
name: coveralls
needs: test
runs-on: ubuntu-latest
steps:
- name: Close Parallel Build
uses: coverallsapp/github-action@v2
with:
parallel-finished: true
carryforward: 'run-2.7,run-2.7-async-websocket,run-3.0,run-3.1,run-3.2,run-3.3'
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
### 2.3.1 (Next)
### 2.4.0 (Next)

* [#516](https://github.com/slack-ruby/slack-ruby-client/pull/516): Add support for Ruby 3.3 - [@olleolleolle](https://github.com/olleolleolle).
* [#520](https://github.com/slack-ruby/slack-ruby-client/pull/520): Support basic markdown formatting - [@nbgoodall](https://github.com/nbgoodall).
* [#520](https://github.com/slack-ruby/slack-ruby-client/pull/520): Add support for basic markdown formatting - [@nbgoodall](https://github.com/nbgoodall).
* [#523](https://github.com/slack-ruby/slack-ruby-client/pull/523): Fix coveralls handling parallel jobs - [@dblock](https://github.com/dblock).
* Your contribution here.

### 2.3.0 (2024/01/31)
Expand Down
2 changes: 1 addition & 1 deletion lib/slack/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module Slack
VERSION = '2.3.1'
VERSION = '2.4.0'
end

0 comments on commit 96f1328

Please sign in to comment.