We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8388801 commit 648e7b6Copy full SHA for 648e7b6
1 file changed
.github/workflows/tests.yml
@@ -22,14 +22,14 @@ jobs:
22
23
steps:
24
- name: Clone vplot repo
25
- uses: actions/checkout@v3
+ uses: actions/checkout@v4
26
with:
27
fetch-depth: 0
28
29
30
31
- name: Set up Python
32
- uses: conda-incubator/setup-miniconda@v2
+ uses: conda-incubator/setup-miniconda@v3
33
34
activate-environment: vplot
35
environment-file: environment.yml
@@ -63,8 +63,8 @@ jobs:
63
run: python -m pytest -v tests --junitxml=junit/test-results.xml
64
65
- name: Publish unit test results
66
- uses: EnricoMi/publish-unit-test-result-action@v1
67
- if: always()
+ uses: EnricoMi/publish-unit-test-result-action@v2
+ if: ${{ matrix.os == 'ubuntu-22.04' && matrix.python-version == '3.9' }}
68
69
files: junit/test-*.xml
70
comment_mode: update last
0 commit comments