File tree 2 files changed +14
-5
lines changed 2 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,17 @@ concurrency:
5
5
group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
6
6
cancel-in-progress : true
7
7
jobs :
8
+ internal_investigation :
9
+ runs-on : ubuntu-latest
10
+ name : Internal Investigation
11
+ steps :
12
+ - uses : actions/checkout@v4
13
+ - uses : ruby/setup-ruby@v1
14
+ with :
15
+ ruby-version : ruby # Latest stable CRuby version
16
+ bundler-cache : true
17
+ - run : bundle exec rake internal_investigation
18
+
8
19
yamllint :
9
20
name : Yamllint
10
21
runs-on : ubuntu-latest
18
29
yamllint_comment : true
19
30
env :
20
31
GITHUB_ACCESS_TOKEN : ${{ secrets.GITHUB_TOKEN }}
32
+
21
33
mdformat :
22
34
name : Mdformat
23
35
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -35,17 +35,14 @@ jobs:
35
35
- " 3.4"
36
36
- ruby-head
37
37
- jruby-9.4
38
- task :
39
- - internal_investigation
40
- - spec
41
- name : " Ruby ${{ matrix.ruby }}: ${{ matrix.task }}"
38
+ name : " Ruby ${{ matrix.ruby }} - Spec"
42
39
steps :
43
40
- uses : actions/checkout@v4
44
41
- uses : ruby/setup-ruby@v1
45
42
with :
46
43
ruby-version : " ${{ matrix.ruby }}"
47
44
bundler-cache : true
48
- - run : NO_COVERAGE=true bundle exec rake ${{ matrix.task }}
45
+ - run : NO_COVERAGE=true bundle exec rake spec
49
46
50
47
coverage :
51
48
runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments