You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Run credo with reviewdog
v1.1
This action runs credo with reviewdog on pull requests to improve code review experience.
Required. Must be in form of github_token: ${{ secrets.github_token }}
'.
Optional. Report level for reviewdog [info,warning,error].
It's same as -level
flag of reviewdog.
Reporter of reviewdog command [github-pr-check,github-pr-review]. Default is github-pr-check. github-pr-review can use Markdown and add a link to rule page in reviewdog reports.
name: reviewdog
on: [pull_request]
jobs:
credo:
name: runner / credo
runs-on: ubuntu-latest
container:
image: elixir:1.9.1-slim
steps:
- uses: actions/checkout@v1
- name: Install Dependencies
run: |
mix local.rebar --force
mix local.hex --force
mix deps.get
- name: credo
uses: red-shirts/reviewdog-action-credo@v1
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review # Change reporter.