Skip to content

Commit

Permalink
Update gh actions for 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
tefra committed Nov 2, 2021
1 parent ba328a3 commit a9ddf1c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,23 @@ 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 }}
uses: actions/setup-python@v2
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
Expand Down

0 comments on commit a9ddf1c

Please sign in to comment.