Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 

25 linhas
509 B

  1. name: Python application
  2. on: [push]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v1
  8. - name: Set up Python 3.7
  9. uses: actions/setup-python@v1
  10. with:
  11. python-version: 3.7
  12. - name: Install dependencies
  13. run: |
  14. pip install --upgrade pip pipenv
  15. pipenv sync -d
  16. - name: Unit tests
  17. run: |
  18. pipenv run python -m unittest -v test
  19. - name: Lint
  20. run: |
  21. pipenv run pylint kosmorro *.py kosmorrolib/*.py