Skip to content

Commit

Permalink
fix yaml strings
Browse files Browse the repository at this point in the history
  • Loading branch information
clbarnes committed Nov 7, 2022
1 parent 1f22a03 commit 70c2547
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Python 3.10
uses: actions/setup-python@v1
with:
python-version: 3.10
python-version: "3.10"
- name: Install wheel and setuptools
run: >-
python -m
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10]
python-version:
- '3.7'
- '3.8'
- '3.9'
- '3.10'
igraph: ["igraph", "no-igraph"]
steps:
# This cancels any such job that is still runnning
Expand Down

0 comments on commit 70c2547

Please sign in to comment.