Append /usr/local/lib to sys.path if import fails #1125
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: reviewdog | |
# run reviewdog for PR only because "github-check" option is failing :( | |
# https://github.com/reviewdog/reviewdog/issues/924 | |
on: [pull_request] | |
jobs: | |
reviewdog_python: | |
name: reviewdog - Python lint | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
cache-dependency-path: setup.py | |
- uses: reviewdog/action-setup@master | |
with: | |
reviewdog_version: latest | |
- name: Install dependencies | |
shell: bash | |
run: | | |
scripts/ci-install-deps.sh | |
pip install flake8 pylint mypy black types-setuptools | |
- name: Set env for PR | |
if: github.event_name == 'pull_request' | |
shell: bash | |
run: echo "REWIEVDOG_REPORTER=github-pr-review" >> $GITHUB_ENV | |
- name: Set env for push | |
if: github.event_name != 'pull_request' | |
shell: bash | |
run: echo "REWIEVDOG_REPORTER=github-check" >> $GITHUB_ENV | |
- name: Run reviewdog | |
shell: bash | |
env: | |
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
reviewdog -list | |
reviewdog -tee -runners=mypy,black -reporter=${{ env.REWIEVDOG_REPORTER }} -fail-on-error=false |