Skip to content

Commit

Permalink
Merge pull request #141 from oscarbenjamin/pr_artifact
Browse files Browse the repository at this point in the history
Update upload-artifact
  • Loading branch information
oscarbenjamin authored Mar 1, 2024
2 parents 5217102 + 9f9c2d2 commit 5cec4c5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- name: Check out the repository
uses: actions/checkout@v4.1.1
uses: "actions/checkout@v4"

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5.0.0
uses: "actions/setup-python@v5"
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -33,13 +33,13 @@ jobs:
./checks.sh
- name: Upload coverage data
uses: "actions/upload-artifact@v3.1.3"
uses: "actions/upload-artifact@v4"
with:
name: coverage-data
name: coverage-data-${{ matrix.python-version }}
path: ".coverage"

- name: Upload documentation
uses: "actions/upload-artifact@v3.1.3"
uses: "actions/upload-artifact@v4"
with:
name: docs
name: docs-${{ matrix.python-version }}
path: docs/_build

0 comments on commit 5cec4c5

Please sign in to comment.