From 2644562a95060098dabf9427dc1e9a163510dba0 Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Thu, 12 Oct 2023 18:34:10 +0200 Subject: [PATCH] upload latex logs as artifacts --- .github/workflows/python-tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 093569e..af1c217 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -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: |