https://github.com/duderman/reek-annotate-action
GitHub Action for creating annotations from Reek results JSON file
https://github.com/duderman/reek-annotate-action
Last synced: 5 months ago
JSON representation
GitHub Action for creating annotations from Reek results JSON file
- Host: GitHub
- URL: https://github.com/duderman/reek-annotate-action
- Owner: duderman
- Created: 2020-08-11T13:09:34.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-25T02:02:45.000Z (over 3 years ago)
- Last Synced: 2025-09-22T00:28:29.124Z (9 months ago)
- Language: TypeScript
- Size: 266 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Annotate Reek GitHub Action
GitHub Action for creating annotations from Reek results JSON file
## Usage
```yml
name: Reek
on: push
jobs:
reek:
name: Reek
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-ruby@v1
with:
ruby-version: '2.7'
- run: gem install reek --no-doc
- run: reek . --format json > reek.json
- uses: duderman/reek-annotate-action@v0.1.0
if: ${{ failure() }}
```