File tree 1 file changed +2
-13
lines changed
1 file changed +2
-13
lines changed Original file line number Diff line number Diff line change 13
13
runs-on : ubuntu-latest
14
14
strategy :
15
15
matrix :
16
- ruby-version : ["2.5", "2.6 ", "2.7 ", "3.0 "]
16
+ ruby-version : ["3.2 ", "3.3 ", "3.4 "]
17
17
18
18
steps :
19
19
- uses : actions/checkout@v1
@@ -22,21 +22,10 @@ jobs:
22
22
with :
23
23
ruby-version : ${{ matrix.ruby-version }}
24
24
bundler-cache : true
25
- - name : Uninstall existing Bundler
26
- run : |
27
- gem uninstall bundler -a -x || true
28
- - name : Install Bundler
29
- run : |
30
- if [[ "${{ matrix.ruby-version }}" == "2.6" || "${{ matrix.ruby-version }}" == "2.7" ]]; then
31
- gem install bundler -v "~> 2.4.0"
32
- else
33
- gem install bundler
34
- fi
35
25
- name : Build and run tests
36
26
env :
37
27
COVERAGE : true
38
28
TERM : xterm
39
29
CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
40
30
run : |
41
- bundle install --jobs 4 --retry 3
42
- bundle exec rake test
31
+ bundle exec rake test
You can’t perform that action at this time.
0 commit comments