mirror of https://github.com/eyhc1/rendercv.git
upload latex logs as artifacts
This commit is contained in:
parent
5d7b473c9b
commit
2644562a95
|
@ -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: |
|
||||
|
|
Loading…
Reference in New Issue