Merge pull request #347 from SDIsl/12.0-#203164_website_published_mes… #1113
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: Flake8 | |
on: | |
push: | |
paths: | |
- '**.py' | |
pull_request: | |
jobs: | |
flake8_py3: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3 | |
- name: Install dependencies | |
run: python -m pip install --upgrade pip | |
- name: Install flake8 | |
run: pip install flake8 | |
- name: Run flake8 | |
uses: suo/flake8-github-action@v1 | |
with: | |
checkName: 'flake8_py3' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |