Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drieam/rspec-github
Formatter for RSpec to show errors in GitHub action annotations
https://github.com/drieam/rspec-github
formatter github-actions rpsec
Last synced: 6 days ago
JSON representation
Formatter for RSpec to show errors in GitHub action annotations
- Host: GitHub
- URL: https://github.com/drieam/rspec-github
- Owner: Drieam
- License: mit
- Created: 2020-04-02T14:37:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-04-29T10:44:35.000Z (7 months ago)
- Last Synced: 2024-04-29T11:50:00.352Z (7 months ago)
- Topics: formatter, github-actions, rpsec
- Language: Ruby
- Homepage: https://drieam.github.io/rspec-github/
- Size: 138 KB
- Stars: 55
- Watchers: 3
- Forks: 10
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Rspec::Github
[![CI](https://github.com/Drieam/rspec-github/actions/workflows/ci.yml/badge.svg)](https://github.com/Drieam/rspec-github/actions/workflows/ci.yml)
[![Gem Version](https://badge.fury.io/rb/rspec-github.svg)](https://badge.fury.io/rb/rspec-github)[RSpec](https://rspec.info/) formatter compatible with [GitHub Action](https://github.com/features/actions)'s annotations. It supports multiline errors and will set pending specs as warnings:
![screenshot.png](docs/screenshot.png)
## Installation
Add the gem to your application's `Gemfile` `test` group:```ruby
group :test do
gem 'rspec-github', require: false
end
```And then of course install the gem by executing:
```bash
bundle install
```## Usage
You can specify the formatter with a command line argument:```bash
rspec --format RSpec::Github::Formatter
```And to always run it with this formatter, you can set it in the `.rspec` file:
```
# other configuration
--format RSpec::Github::Formatter
```And to register the formatter in configuration, you can add the following to `spec/spec_helper.rb`:
```ruby
RSpec.configure do |config|
# Use the GitHub Annotations formatter for CI
if ENV['GITHUB_ACTIONS'] == 'true'
require 'rspec/github'
config.add_formatter RSpec::Github::Formatter
end
end
```Note that you can select multiple formatters so that you can also see other output:
```bash
rspec --format RSpec::Github::Formatter --format progress
rspec --format RSpec::Github::Formatter --format documentation
```If you want to disable annotations for pending specs you can do that by adding `--tag ~skip` to your command:
```bash
rspec --format RSpec::Github::Formatter --tag ~skip
```## Development
After checking out the repo, run `bundle install` to install dependencies. Then, run `rake spec` to run the tests.
Publishing a new version is handled by the [publish workflow](.github/workflows/publish.yml). This workflow publishes a GitHub release to [rubygems](https://rubygems.org/) with the version defined in the release.### Usefull references
- https://help.github.com/en/actions/reference/development-tools-for-github-actions
- https://developer.github.com/apps/quickstart-guides/creating-ci-tests-with-the-checks-api## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).