Skip to content

Update README.md

Update README.md #9

Workflow file for this run

name: Python check
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt update
sudo apt -y install swig3.0
python -m pip install --upgrade pip setuptools wheel pytest
pip install '.[extras,develop]'
- name: Test with pytest
run: |
pytest