Skip to content

Commit

Permalink
Update python.yml
Browse files Browse the repository at this point in the history
Need to fix workflow as well, since it still used the old-fashioned way of installing (i.e. `python setup.py install`, instead of `pip install .`)
  • Loading branch information
gmloose authored Jul 9, 2024
1 parent 0a39534 commit ddb9b1f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand All @@ -21,6 +21,6 @@ jobs:
python -m pip install --upgrade pip
pip install flake8 pytest
- name: Install
run: python setup.py install
run: pip install .
- name: Test
run: python setup.py test
run: pytest

0 comments on commit ddb9b1f

Please sign in to comment.