Skip to content

Proprietary implementation of Saliency algorithm #8

Proprietary implementation of Saliency algorithm

Proprietary implementation of Saliency algorithm #8

Workflow file for this run

name: reviewdog
on: [pull_request]
jobs:
linter_name:
name: runner / black formatter
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# Install specific version black (this step is not required. default is "black[jupyter]")
- run: pip install black==23.1.0
- uses: reviewdog/action-black@v3
with:
github_token: ${{ secrets.github_token }}
# Change reviewdog reporter if you need [github-pr-check, github-check].
reporter: github-pr-review
# Change reporter level if you need.
# GitHub Status Check won't become failure with a warning.
level: warning
mypy:
name: runner / mypy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: tsuyoshicho/action-mypy@v3
with:
github_token: ${{ secrets.github_token }}
reporter: github-pr-review
level: warning
workdir: .
execute_command: 'mypy -p foxai --show-error-context --pretty --namespace-packages --explicit-package-bases --ignore-missing-imports'