Skip to content

update pybind & python 3.10/3.11 available (#49) #27

update pybind & python 3.10/3.11 available (#49)

update pybind & python 3.10/3.11 available (#49) #27

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false # would like to see which version fails
max-parallel: 3
matrix:
platform: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test with tox
run: tox