diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 67d9249d2..05a630ac2 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,15 +14,15 @@ jobs: fail-fast: false matrix: include: - - {name: PyPy 3.6, python: pypy-3.6, os: ubuntu} - - {name: PyPy 3.7, python: pypy-3.7, os: ubuntu} - - {name: Python 3.6, python: 3.6, os: ubuntu} - - {name: Python 3.7, python: 3.7, os: ubuntu} - - {name: Python 3.8, python: 3.8, os: ubuntu} - - {name: Python 3.9, python: 3.9, os: ubuntu} - - {name: Python 3.10, python: 3.10.0-beta - 3.10, os: ubuntu} - - {name: Windows py37, python: 3.7, os: windows} - - {name: MacOS py37, python: 3.7, os: macos} + - {name: PyPy 3.6, python: 'pypy-3.6', os: ubuntu} + - {name: PyPy 3.7, python: 'pypy-3.7', os: ubuntu} + - {name: Python 3.6, python: '3.6', os: ubuntu} + - {name: Python 3.7, python: '3.7', os: ubuntu} + - {name: Python 3.8, python: '3.8', os: ubuntu} + - {name: Python 3.9, python: '3.9', os: ubuntu} + - {name: Python 3.10, python: '3.10', os: ubuntu} + - {name: Windows py37, python: '3.7', os: windows} + - {name: MacOS py37, python: '3.7', os: macos} steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python }} @@ -30,7 +30,7 @@ jobs: with: python-version: ${{ matrix.python }} - name: Install libxml2 - if: startsWith(matrix.python, 'pypy') || startsWith(matrix.python, '3.10') + if: startsWith(matrix.python, 'pypy') run: | sudo apt-get install libxml2-dev libxslt-dev - name: Install dependencies