chore(deps): update arkedge/workflows-c2a action to v6 #1684
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 / lint python | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
jobs: | |
flake8_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up python environment | |
uses: actions/[email protected] | |
with: | |
python-version-file: .github/workflows/.python-version | |
- name: install flake8 | |
run: pip install flake8==6.0.0 | |
- name: flake8 Lint | |
uses: reviewdog/action-flake8@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-review | |
filter_mode: nofilter | |
fail_on_error: true | |
level: warning |