Skip to content

Commit

Permalink
github action
Browse files Browse the repository at this point in the history
  • Loading branch information
HajimeKawahara committed Sep 17, 2024
1 parent 9dfdae2 commit c40d66e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
steps:
# Checkout repository
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

# Setup Python
- name: Set up Python 3.10
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.10'

Expand All @@ -43,19 +43,19 @@ jobs:
# show the results
- name: Upload Unit Test Results
if: ${{ always() }}
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Unit Test Results (Python 3.10)
path: results/*.xml

- name: Download Artifacts
if: success() || failure()
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
path: artifacts

- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: artifacts/**/*.xml

0 comments on commit c40d66e

Please sign in to comment.