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 1
1
name : Linting
2
2
on :
3
- - pull_request
3
+ push :
4
+ branches :
5
+ - master
6
+ pull_request :
7
+ workflow_dispatch :
4
8
5
9
permissions : # added using https://github.com/step-security/secure-workflows
6
10
contents : read
@@ -10,11 +14,23 @@ concurrency:
10
14
cancel-in-progress : true
11
15
12
16
jobs :
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 :
14
30
permissions :
15
31
contents : read # for actions/checkout to fetch code
16
32
pull-requests : write # for karancode/yamllint-github-action to post comments on PRs
17
- name : Yamllint
33
+ name : Yaml
18
34
runs-on : ubuntu-latest
19
35
steps :
20
36
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 35
35
bundler-cache : true
36
36
- name : spec
37
37
run : bundle exec rake spec
38
- - name : internal_investigation
39
- run : bundle exec rake internal_investigation
40
38
41
39
jruby :
42
40
name : JRuby 9.4
49
47
bundler-cache : true
50
48
- name : spec
51
49
run : bundle exec rake spec
52
- - name : internal_investigation
53
- run : bundle exec rake internal_investigation
54
50
55
51
prism :
56
52
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments