Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,13 @@ jobs:

- name: Run StandardRB
run: standardrb --format progress

ci:
runs-on: ubuntu-latest
needs: [test, lint]
if: always()
steps:
- run: |
if [[ "${{ needs.test.result }}" != "success" || "${{ needs.lint.result }}" != "success" ]]; then
exit 1
fi
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

A Ruby gem that reports test results from Minitest and RSpec to the Lizard API service.

## Supported Ruby Versions

- Ruby 3.2
- Ruby 3.3
- Ruby 3.4
- Ruby 4.0

## Installation

Add this line to your application's Gemfile:
Expand Down Expand Up @@ -87,7 +94,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To

## Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/djbender/lizard.
Bug reports and pull requests are welcome on GitHub at https://github.com/djbender/lizard-ruby.

## License

Expand Down
4 changes: 2 additions & 2 deletions lizard.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Gem::Specification.new do |spec|

spec.summary = "Test result reporter for Lizard API"
spec.description = "A gem that reports test results from Minitest and RSpec to the Lizard API service"
spec.homepage = "https://github.com/djbender/lizard"
spec.homepage = "https://github.com/djbender/lizard-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.required_ruby_version = ">= 3.2.0"

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
Expand Down