Skip to content

Commit

Permalink
fix: corrected workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
lingjie00 committed Sep 4, 2022
1 parent 6846b17 commit dc05730
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- run: pip install -e .
# install and run pdoc
- run: pip install pdoc
- run: pdoc -o docs/
- run: pdoc configen -o docs/

- uses: actions/upload-pages-artifact@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/project-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, 3.10]
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
python -m pip install flake8 pytest coverage
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: install package
run: |
Expand Down

0 comments on commit dc05730

Please sign in to comment.