Skip to content

Commit

Permalink
Merge pull request #65 from sandialabs/dependabot/github_actions/acti…
Browse files Browse the repository at this point in the history
…ons/upload-artifact-4

chore(deps): Bump actions/upload-artifact from 3 to 4
  • Loading branch information
jmgate committed Jul 10, 2024
2 parents cf97a67 + 8f62d45 commit d575880
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,16 @@ jobs:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

- name: Check documentation coverage
run: make coverage SPHINXOPTS="-W --keep-going"
run: |
make coverage SPHINXOPTS="-W --keep-going"
mv build/coverage/python.txt ../docs-coverage-report-${{ matrix.version }}.txt
working-directory: ./doc

- name: Archive documentation coverage results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docs-coverage-report
path: doc/build/coverage/python.txt
name: docs-coverage-report-${{ matrix.version }}
path: docs-coverage-report-${{ matrix.version }}.txt

- name: Test uninstall
run: python3 -m pip uninstall -y shell-logger
Expand Down

0 comments on commit d575880

Please sign in to comment.