Skip to content

Commit

Permalink
Merge pull request #33 from brown-ccv/feature-action
Browse files Browse the repository at this point in the history
Feature github workflow
  • Loading branch information
kmilo9999 authored Nov 9, 2023
2 parents acdf570 + 19a207c commit 2da4dc3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/python_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
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]"

0 comments on commit 2da4dc3

Please sign in to comment.