Skip to content

Commit b3c6270

Browse files
fix: Correct indentation in GitHub Actions workflow (ci.yml)
The 'Upload coverage to Coveralls' step was incorrectly indented, causing a syntax error in the workflow file. This commit corrects the indentation to ensure the step is properly recognized by GitHub Actions.
1 parent f851107 commit b3c6270

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
bundler-cache: true # Runs bundle install and caches gems
1919
- name: Run RSpec
2020
run: bundle exec rspec
21-
- name: Upload coverage to Coveralls
22-
uses: coverallsapp/github-action@v2
23-
with:
24-
github-token: ${{ secrets.GITHUB_TOKEN }}
25-
# Default LCOV file path is ./coverage/lcov.info which should be generated
26-
# by simplecov-lcov with report_with_single_file = true
21+
- name: Upload coverage to Coveralls
22+
uses: coverallsapp/github-action@v2
23+
with:
24+
github-token: ${{ secrets.GITHUB_TOKEN }}
25+
# Default LCOV file path is ./coverage/lcov.info which should be generated
26+
# by simplecov-lcov with report_with_single_file = true

0 commit comments

Comments
 (0)