We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3c1222 commit 8b17e0fCopy full SHA for 8b17e0f
.github/workflows/main.yml
@@ -17,10 +17,10 @@ jobs:
17
# - macos-latest
18
# - windows-latest
19
ruby:
20
- - "2.7"
21
- - "3.0"
22
- - "3.1"
23
- "3.2"
+ - "3.1"
+ - "3.0"
+ - "2.7"
24
env:
25
BUNDLE_GEMFILE: Gemfile
26
@@ -33,8 +33,11 @@ jobs:
33
- name: RSpec
34
run: bundle exec rspec
35
- name: Upload coverage to Codecov
36
- uses: codecov/codecov-action@8e29a53ea65f98e97f4ad4594d355d8e8fd5bcfe
+ if: ${{ strategy.job-index == 0 }} # only run codecov on first run
37
+ uses: codecov/codecov-action@c9e4b7326764720e2d95c3a9615d9e6ba7fc949f
38
with:
39
+ token: ${{ secrets.CODECOV_TOKEN }}
40
+ name: Ruby SDK
41
fail_ci_if_error: true
42
verbose: true
43
file: coverage/coverage.xml
0 commit comments