File tree Expand file tree Collapse file tree 1 file changed +2
-41
lines changed Expand file tree Collapse file tree 1 file changed +2
-41
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- - ' 3.2'
24- os :
25- - ubuntu-20.04
26- - ubuntu-latest
27- exclude :
28- - { os: ubuntu-latest, ruby: '2.7' }
29- - { os: ubuntu-latest, ruby: '3.0' }
30- test_cmd :
31- - bundle exec rspec
32-
33- env :
34- RAILS_ENV : test
35-
36- name : ${{ matrix.os }} - Ruby ${{ matrix.ruby }} - ${{ matrix.test_cmd }}
37- steps :
38- - name : Checkout code
39- uses : actions/checkout@v4
40-
41- - name : Setup Ruby
42- uses : ruby/setup-ruby@v1
43- with :
44- ruby-version : ${{ matrix.ruby }}
45- bundler-cache : true
46-
47- - name : ${{ matrix.test_cmd }}
48- run : |
49- echo "${CMD}"
50- bash -c "${CMD}"
51- env :
52- 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