run-crt-test.yml 618 B

12345678910111213141516171819202122232425262728
  1. name: Run CRT tests
  2. on:
  3. push:
  4. pull_request:
  5. branches-ignore: [ master ]
  6. jobs:
  7. build:
  8. runs-on: ubuntu-latest
  9. strategy:
  10. fail-fast: false
  11. matrix:
  12. python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
  13. steps:
  14. - uses: actions/checkout@v2
  15. - name: Set up Python ${{ matrix.python-version }}
  16. uses: actions/setup-python@v2
  17. with:
  18. python-version: ${{ matrix.python-version }}
  19. - name: Install dependencies and CRT
  20. run: |
  21. python scripts/ci/install --extras crt
  22. - name: Run tests
  23. run: |
  24. python scripts/ci/run-crt-tests