File tree 2 files changed +8
-6
lines changed
2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -14,3 +14,4 @@ updates:
14
14
interval : " weekly"
15
15
pull-request-branch-name :
16
16
separator : " -"
17
+ versioning-strategy : lockfile-only
Original file line number Diff line number Diff line change 1
- name : Ruby checks
1
+ name : Ruby
2
2
3
3
on :
4
4
push :
5
- branches : [ " main" ]
5
+ branches : [ main ]
6
6
pull_request :
7
- types : [ opened, edited, synchronize ]
8
7
9
8
jobs :
10
9
test :
@@ -13,13 +12,13 @@ jobs:
13
12
strategy :
14
13
fail-fast : false
15
14
matrix :
16
- ruby-version : [ 3.1 , 3.0, 2.7 ]
15
+ ruby-version : [ 3, 3.1, "3.0" ]
17
16
18
17
name : Ruby ${{ matrix.ruby-version }}
19
18
20
19
steps :
21
20
- name : clone ${{ github.repository }}
22
- uses : actions/checkout@v3
21
+ uses : actions/checkout@v4
23
22
- name : setup Ruby ${{ matrix.ruby-version }}
24
23
uses : ruby/setup-ruby@v1
25
24
with :
28
27
- name : run tests
29
28
run : bundle exec rspec
30
29
- name : upload code coverage
31
- uses : codecov/codecov-action@v3
30
+ uses : codecov/codecov-action@v4
31
+ with :
32
+ token : ${{ secrets.CODECOV_TOKEN }}
You can’t perform that action at this time.
0 commit comments