Add Codecov upload step to Ruby workflow (#78)

This commit is contained in:
l5y
2025-09-16 09:43:09 +02:00
committed by GitHub
parent 203bd623bd
commit afd18794c7
+7
View File
@@ -31,3 +31,10 @@ jobs:
run: bundle install
- name: Run tests
run: bundle exec rspec
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false
flags: ruby-${{ matrix.ruby-version }}
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}