File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -5,6 +5,17 @@ concurrency:
55 group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
66 cancel-in-progress : true
77jobs :
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 : NO_COVERAGE=true bundle exec rake internal_investigation
18+
819 yamllint :
920 name : Yamllint
1021 runs-on : ubuntu-latest
1829 yamllint_comment : true
1930 env :
2031 GITHUB_ACCESS_TOKEN : ${{ secrets.GITHUB_TOKEN }}
32+
2133 mdformat :
2234 name : Mdformat
2335 runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -35,17 +35,14 @@ jobs:
3535 - " 3.4"
3636 - ruby-head
3737 - jruby-9.4
38- task :
39- - internal_investigation
40- - spec
41- name : " Ruby ${{ matrix.ruby }}: ${{ matrix.task }}"
38+ name : " Ruby ${{ matrix.ruby }} - Spec"
4239 steps :
4340 - uses : actions/checkout@v4
4441 - uses : ruby/setup-ruby@v1
4542 with :
4643 ruby-version : " ${{ matrix.ruby }}"
4744 bundler-cache : true
48- - run : NO_COVERAGE=true bundle exec rake ${{ matrix.task }}
45+ - run : NO_COVERAGE=true bundle exec rake spec
4946
5047 coverage :
5148 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments