Skip to content

Run base code on different python versions #2

Run base code on different python versions

Run base code on different python versions #2

Workflow file for this run

name: Run base code on different python versions
'on': workflow_dispatch
jobs:
python_run_scripts:
strategy:
matrix:
version: [3.9, 3.10, 3.11]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.version }} # install the python version needed
- run: python install --editable ".[dev]"