Commit 3b5cdc7 1 parent db342f0 commit 3b5cdc7 Copy full SHA for 3b5cdc7
File tree 1 file changed +38
-0
lines changed
1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : RSpec
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+ pull_request :
8
+ branches :
9
+ - main
10
+ schedule :
11
+ - cron : " 0 21 * * 6"
12
+
13
+ jobs :
14
+ rspec :
15
+ runs-on : ubuntu-24.04
16
+ timeout-minutes : 10
17
+ strategy :
18
+ fail-fast : false
19
+ matrix :
20
+ ruby : ["3.1", "3.2", "3.3"]
21
+
22
+ steps :
23
+ - name : Harden Runner
24
+ uses : step-security/harden-runner@cb605e52c26070c328afc4562f0b4ada7618a84e # v2.10.4
25
+ with :
26
+ egress-policy : audit
27
+
28
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
29
+ - run : rm -f Gemfile.lock
30
+ - run : rm -f .ruby-version
31
+ - name : Set up Ruby
32
+ uses : ruby/setup-ruby@2654679fe7f7c29875c669398a8ec0791b8a64a1 # v1.215.0
33
+ with :
34
+ ruby-version : ${{ matrix.ruby }}
35
+ rubygems : latest
36
+ bundler : latest
37
+ bundler-cache : true
38
+ - run : bundle exec rspec
You can’t perform that action at this time.
0 commit comments