You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819
  1. name: PEP8 Check
  2. on:
  3. push:
  4. branches: [main]
  5. pull_request:
  6. branches: [main]
  7. jobs:
  8. pep8:
  9. runs-on: ubuntu-latest
  10. steps:
  11. - uses: actions/checkout@v3
  12. - name: Set up Python 3.10
  13. uses: actions/setup-python@v4
  14. with:
  15. python-version: '3.10'
  16. - name: Install flake8
  17. run: pip install flake8
  18. - name: Run flake8
  19. run: flake8 --ignore=E501 .