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:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
os: [ubuntu-latest, windows-2019]
|
os: [ubuntu-latest, windows-latest]
|
||||||
python-version: ["3.10", "3.11", "3.12"]
|
python-version: ["3.10", "3.11", "3.12"]
|
||||||
|
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
|
@ -39,6 +39,12 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
pip install pytest pytest-cov
|
pip install pytest pytest-cov
|
||||||
pytest --cov-report html --cov="." tests/
|
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
|
- name: Upload coverage data to smokeshow
|
||||||
if: ${{matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'}} # upload coverage once
|
if: ${{matrix.os == 'ubuntu-latest' && matrix.python-version == '3.12'}} # upload coverage once
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in New Issue