Create CodeTag
plugin to render code files with and without solutions
#67
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linters | |
on: [pull_request] | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
pylint: | |
name: runner / pylint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dciborow/[email protected] | |
with: | |
github_token: ${{ secrets.github_token }} | |
# Change reviewdog reporter if you need [github-pr-check,github-check,github-pr-review]. | |
reporter: github-pr-check | |
# Change reporter level if you need. | |
# GitHub Status Check won't become failure with warning. | |
level: warning | |
glob_pattern: "**/*.py" | |
filter_mode: nofilter | |
fail_on_error: true | |
pylint_args: "--disable=missing-module-docstring" | |
black: | |
name: runner / black | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check files using the black formatter | |
uses: rickstaa/[email protected] | |
id: action_black | |
with: | |
black_args: "." | |
fail_on_error: true | |
- name: Annotate diff changes using reviewdog | |
if: steps.action_black.outputs.is_formatted == 'true' | |
uses: reviewdog/action-suggester@v1 | |
with: | |
tool_name: blackfmt | |
# NOTE: the reviewdog filter_mode is diff_context - this is the only thing supported by GitHub suggestions | |
markdownlint: | |
name: runner / markdownlint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: markdownlint | |
uses: reviewdog/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-check | |
filter_mode: nofilter | |
fail_on_error: true | |
markdownlint_flags: "--disable MD013 MD041" | |
rubocop: | |
name: runner / rubocop | |
runs-on: ubuntu-latest | |
env: | |
BUNDLE_ONLY: rubocop | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- uses: reviewdog/action-rubocop@v2 | |
with: | |
reporter: github-pr-check | |
skip_install: true | |
use_bundler: true | |
filter_mode: nofilter | |
fail_on_error: true |