Skip to content

Commit

Permalink
Merge pull request #43 from athril/main
Browse files Browse the repository at this point in the history
Fixing workflows due to codecov.io errors
  • Loading branch information
athril authored Jul 25, 2024
2 parents bd31bea + b248009 commit 2ffd479
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
pytest --cov=./src tests/ --cov-report term --cov-report=xml:coverage.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4.0.1
uses: codecov/codecov-action@v4.5.0
with:
verbose: true
directory: ./coverage/reports/
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,16 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: "3.10"

- name: Build HTML
run: |
python -m pip install --upgrade pip
pip install -e .
pip install sphinx sphinx_rtd_theme
sphinx-build docs docs/_build/html/
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3.0.1
with:
# Upload built website
path: 'docs/_build/html'
Expand All @@ -52,4 +54,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4.0.5

0 comments on commit 2ffd479

Please sign in to comment.