A console script that allows you to easily update multiple git repositories at once
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

27 wiersze
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