Skip to content

Upversion to 2.2.0

Upversion to 2.2.0 #89

Workflow file for this run

name: PyVMCON test workflow
on:
pull_request:
push:
jobs:
test_pyvmcon:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- uses: actions/checkout@v3
- name: Install pytest
run: pip install pytest
- name: Install PyVMCON
run: pip install .
- name: Run pytest
run: pytest tests/