diff --git a/.github/workflows/macOS.yml b/.github/workflows/macOS.yml index 949d9d1..0ee8525 100644 --- a/.github/workflows/macOS.yml +++ b/.github/workflows/macOS.yml @@ -16,3 +16,8 @@ jobs: run: make setup - name: make test run: make test + - name: save logs as artifact + uses: actions/upload-artifact@v2 + with: + name: logs + path: .temp/execute.log diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml index a3d62e4..1ce122e 100644 --- a/.github/workflows/ubuntu.yml +++ b/.github/workflows/ubuntu.yml @@ -20,3 +20,8 @@ jobs: run: make setup - name: make test run: make test + - name: save logs as artifact + uses: actions/upload-artifact@v2 + with: + name: logs + path: .temp/execute.log