Quellcode durchsuchen

CI: Make test report available as artifact (#1290)

Make the HTML test report available as an GitHub Actions artifact.
One ZIP files for download, available for 3 days (arbitrary, but one can also rerun jobs if needed).
Vaclav Petras vor 4 Jahren
Ursprung
Commit
7eee48d2b8
1 geänderte Dateien mit 7 neuen und 0 gelöschten Zeilen
  1. 7 0
      .github/workflows/ci.yml

+ 7 - 0
.github/workflows/ci.yml

@@ -73,3 +73,10 @@ jobs:
       run: .github/workflows/test_simple.sh
     - name: Run tests
       run: .github/workflows/test_thorough.sh
+
+    - name: Make HTML test report available
+      uses: actions/upload-artifact@v2
+      with:
+        name: testreport-${{ matrix.os }}
+        path: testreport
+        retention-days: 3