File tree Expand file tree Collapse file tree 1 file changed +2
-40
lines changed Expand file tree Collapse file tree 1 file changed +2
-40
lines changed Original file line number Diff line number Diff line change 99 - ' *'
1010
1111jobs :
12- test :
13- runs-on : ${{ matrix.os }}
14- timeout-minutes : 40
15-
16- strategy :
17- fail-fast : true
18- matrix :
19- ruby :
20- - 2.7
21- - 3.0
22- - 3.1
23- os :
24- - ubuntu-20.04
25- - ubuntu-latest
26- exclude :
27- - { os: ubuntu-latest, ruby: 2.7 }
28- - { os: ubuntu-latest, ruby: 3.0 }
29- test_cmd :
30- - bundle exec rspec
31-
32- env :
33- RAILS_ENV : test
34-
35- name : ${{ matrix.os }} - Ruby ${{ matrix.ruby }} - ${{ matrix.test_cmd }}
36- steps :
37- - name : Checkout code
38- uses : actions/checkout@v4
39-
40- - name : Setup Ruby
41- uses : ruby/setup-ruby@v1
42- with :
43- ruby-version : ${{ matrix.ruby }}
44- bundler-cache : true
45-
46- - name : ${{ matrix.test_cmd }}
47- run : |
48- echo "${CMD}"
49- bash -c "${CMD}"
50- env :
51- CMD : ${{ matrix.test_cmd }}
12+ build :
13+ uses : cgranleese-r7/metasploit-framework/.github/workflows/shared_gem_verify.yml@add-gem-verify-shared-pipeline
You can’t perform that action at this time.
0 commit comments