python-app.yml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # This workflow will install Python dependencies, run tests and lint with a single version of Python
  2. # For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
  3. name: Python application
  4. on:
  5. push:
  6. branches: [ "main" ]
  7. pull_request:
  8. branches: [ "main" ]
  9. permissions:
  10. contents: read
  11. jobs:
  12. build:
  13. runs-on: ubuntu-latest
  14. steps:
  15. - uses: actions/checkout@v3
  16. - name: Set up Python 3.10
  17. uses: actions/setup-python@v3
  18. with:
  19. python-version: "3.10"
  20. - name: Install Poetry
  21. uses: snok/install-poetry@v1
  22. - name: Install dependencies
  23. run: |
  24. python -m pip install --upgrade pip
  25. pip install flake8 pytest
  26. if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
  27. poetry shell
  28. poetry install
  29. - name: Get latests
  30. run: |
  31. python .\main.py
  32. # - name: Lint with flake8
  33. # run: |
  34. # # stop the build if there are Python syntax errors or undefined names
  35. # flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
  36. # # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
  37. # flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
  38. # - name: Test with pytest
  39. # run: |
  40. # pytest