Add extra checks when installing Rust - display some warning messages, if needed #510
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: mypy reviewdog check | |
on: [pull_request] | |
jobs: | |
mypy: | |
name: runner / mypy | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Python dependencies | |
uses: py-actions/py-dependency-install@v2 | |
- uses: tsuyoshicho/action-mypy@v3 | |
with: | |
github_token: ${{ secrets.github_token }} | |
filter_mode: nofilter |