upload latex logs as artifacts

This commit is contained in:
Sina Atalay 2023-10-12 18:34:10 +02:00
parent 5d7b473c9b
commit 2644562a95
1 changed files with 7 additions and 1 deletions

View File

@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-2019]
os: [ubuntu-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
@ -39,6 +39,12 @@ jobs:
run: |
pip install pytest pytest-cov
pytest --cov-report html --cov="." tests/
- name: Upload artifacts
if: ${{matrix.os == 'windows-latest' && matrix.python-version == '3.10'}}
uses: actions/upload-artifact@v3
with:
name: reference_files
path: ./tests/reference_files
- name: Upload coverage data to smokeshow
if: ${{matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'}} # upload coverage once
run: |