A console script that allows you to easily update multiple git repositories at once
Não pode escolher mais do que 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.

27 linhas
652 B

  1. name: ci
  2. on: [push, pull_request]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. strategy:
  7. matrix:
  8. python: [ "3.6", "3.7", "3.8", "3.9", "3.10", "3.11" ]
  9. name: python-${{ matrix.python }}
  10. steps:
  11. - name: Checkout
  12. uses: actions/checkout@main
  13. - name: Setup python-${{ matrix.python }}
  14. uses: actions/setup-python@main
  15. with:
  16. python-version: ${{ matrix.python }}
  17. cache: "pipenv"
  18. cache-dependency-path: "Pipfile"
  19. - name: Install Dependencies
  20. run: |
  21. pip install pipenv
  22. pipenv install -d
  23. - name: Test
  24. run: pipenv run pytest