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 32c555b commit 0f8c018Copy full SHA for 0f8c018
.github/workflows/ci.yml
@@ -38,11 +38,29 @@ jobs:
38
fail-fast: true
39
matrix:
40
ruby:
41
- - '3.2'
+ - 3.2
42
43
steps:
44
- name: Set up Ruby
45
uses: ruby/setup-ruby@v1
46
with:
47
ruby-version: ${{ matrix.ruby }}
48
- bundler-cache: true
+ bundler-cache: true
49
+ - name: Run Bundler
50
+ run: |
51
+ gem install bundler
52
+ bundle --version
53
+
54
+ required:
55
+ if: always()
56
+ name: Required
57
+ needs:
58
+ - build
59
+ runs-on: ubuntu-latest
60
+ timeout-minutes: 10
61
+ steps:
62
+ - name: Merge Requirement
63
64
+ if [[ ${{ needs.build.result }} != 'success' ]]; then
65
+ exit -1
66
+ fi
0 commit comments