File tree Expand file tree Collapse file tree 2 files changed +19
-7
lines changed Expand file tree Collapse file tree 2 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 11name : Linting
22on :
3- - pull_request
3+ push :
4+ branches :
5+ - master
6+ pull_request :
7+ workflow_dispatch :
48
59permissions : # added using https://github.com/step-security/secure-workflows
610 contents : read
@@ -10,11 +14,23 @@ concurrency:
1014 cancel-in-progress : true
1115
1216jobs :
13- yamllint :
17+ lint-ruby :
18+ name : Ruby
19+ runs-on : ubuntu-latest
20+ steps :
21+ - uses : actions/checkout@v4
22+ - uses : ruby/setup-ruby@v1
23+ with :
24+ ruby-version : ruby # Latest stable CRuby version
25+ bundler-cache : true
26+ - name : internal_investigation
27+ run : bundle exec rake internal_investigation
28+
29+ lint-yaml :
1430 permissions :
1531 contents : read # for actions/checkout to fetch code
1632 pull-requests : write # for karancode/yamllint-github-action to post comments on PRs
17- name : Yamllint
33+ name : Yaml
1834 runs-on : ubuntu-latest
1935 steps :
2036 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change 3535 bundler-cache : true
3636 - name : spec
3737 run : bundle exec rake spec
38- - name : internal_investigation
39- run : bundle exec rake internal_investigation
4038
4139 jruby :
4240 name : JRuby 9.4
4947 bundler-cache : true
5048 - name : spec
5149 run : bundle exec rake spec
52- - name : internal_investigation
53- run : bundle exec rake internal_investigation
5450
5551 prism :
5652 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments