File tree Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Original file line number Diff line number Diff line change 6
6
pull_request :
7
7
workflow_dispatch :
8
8
9
- permissions : # added using https://github.com/step-security/secure-workflows
10
- contents : read
11
-
12
9
concurrency :
13
10
group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
14
11
cancel-in-progress : true
35
32
steps :
36
33
- uses : actions/checkout@v4
37
34
- name : Yamllint
38
- uses : karancode/yamllint-github-action@master
35
+ uses : karancode/yamllint-github-action@v3.0.0
39
36
with :
40
37
yamllint_strict : true
41
38
yamllint_format : parsable
Original file line number Diff line number Diff line change @@ -16,11 +16,8 @@ concurrency:
16
16
17
17
jobs :
18
18
main :
19
- name : Ruby ${{ matrix.ruby }}
19
+ name : Spec - ${{ matrix.ruby }}
20
20
runs-on : ubuntu-latest
21
- env :
22
- # See https://github.com/tmm1/test-queue#environment-variables
23
- TEST_QUEUE_WORKERS : 2
24
21
strategy :
25
22
fail-fast : false
26
23
matrix :
@@ -37,13 +34,13 @@ jobs:
37
34
run : bundle exec rake spec
38
35
39
36
jruby :
40
- name : JRuby 9.4
37
+ name : Spec - JRuby
41
38
runs-on : ubuntu-latest
42
39
steps :
43
40
- uses : actions/checkout@v4
44
41
- uses : ruby/setup-ruby@v1
45
42
with :
46
- ruby-version : jruby-9.4
43
+ ruby-version : jruby # Latest stable JRuby version
47
44
bundler-cache : true
48
45
- name : spec
49
46
run : bundle exec rake spec
70
67
- uses : actions/checkout@v4
71
68
- uses : ruby/setup-ruby@v1
72
69
with :
73
- ruby-version : 3.2
70
+ ruby-version : ruby # Latest stable CRuby version
74
71
bundler-cache : true
75
- - name : test
72
+ - name : Check documentation syntax
76
73
run : bundle exec rake documentation_syntax_check
77
74
78
75
oldest_supported_rubocop :
You can’t perform that action at this time.
0 commit comments