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.
 
 
 
 
 
 

29 lines
520 B

  1. name: cli-test
  2. on:
  3. push:
  4. branches:
  5. - main
  6. paths:
  7. - "cli/**"
  8. pull_request:
  9. paths:
  10. - "cli/**"
  11. jobs:
  12. test:
  13. name: Python ${{ matrix.python-version }}
  14. runs-on: ubuntu-18.04
  15. strategy:
  16. matrix:
  17. python-version:
  18. - "3.6"
  19. - "3.8"
  20. - "3.10"
  21. steps:
  22. - uses: actions/checkout@v2
  23. - uses: actions/setup-python@v2
  24. with:
  25. python-version: ${{ matrix.python-version }}
  26. - run: |
  27. cd cli
  28. ./test