File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 50
50
webhook-url : ${{ secrets.SLACK_WEBHOOK }}
51
51
matrix : ${{ toJson(matrix) }}
52
52
53
+ rbs :
54
+ runs-on : ubuntu-latest
55
+
56
+ steps :
57
+ - uses : actions/checkout@v4
58
+
59
+ - uses : ruby/setup-ruby@v1
60
+ with :
61
+ ruby-version : ruby
62
+ bundler-cache : true
63
+
64
+ - name : bundle update
65
+ run : |
66
+ set -xe
67
+ bundle config path vendor/bundle
68
+ bundle update --jobs $(nproc) --retry 3
69
+
70
+ - run : bundle exec rake rbs:install
71
+ - run : bundle exec rake rbs
72
+
73
+ - name : Slack Notification (not success)
74
+ uses : act10ns/slack@v2
75
+ if : " ! success()"
76
+ continue-on-error : true
77
+ with :
78
+ status : ${{ job.status }}
79
+ webhook-url : ${{ secrets.SLACK_WEBHOOK }}
80
+
53
81
notify :
54
82
needs :
55
83
- test
84
+ - rbs
56
85
57
86
runs-on : ubuntu-latest
58
87
You can’t perform that action at this time.
0 commit comments