We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c45d77a commit 368b2e6Copy full SHA for 368b2e6
.github/workflows/test.yml
@@ -40,10 +40,15 @@ jobs:
40
run: bundle exec rake ${{ matrix.rake_task }} RUBYOPT="${{ matrix.rubyopt }}"
41
- name: Build gem
42
run: gem build --strict --verbose *.gemspec
43
+
44
tests:
45
+ if: always()
46
needs:
47
- test
- runs-on: ubuntu-latest
48
+ runs-on: ubuntu-24.04
49
name: Test suite
50
steps:
- - run: echo Test suite completed
51
+ - name: Decide whether the needed jobs succeeded or failed
52
+ uses: re-actors/alls-green@release/v1
53
+ with:
54
+ jobs: ${{ toJSON(needs) }}
0 commit comments