Add Python 3.10 CI build (#45)

This commit is contained in:
offa
2021-10-07 03:28:22 +00:00
committed by GitHub
parent 9630b96935
commit 9f7754f0e6

View File

@@ -7,12 +7,12 @@ jobs:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
matrix: matrix:
python: [3.6, 3.7, 3.8, 3.9] python: ["3.6", "3.7", "3.8", "3.9", "3.10"]
os: [ubuntu-18.04, windows-2016] os: [ubuntu-18.04, windows-2016]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python }} - name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v1 uses: actions/setup-python@v2
with: with:
python-version: ${{ matrix.python }} python-version: ${{ matrix.python }}
- name: Setup VC - name: Setup VC