We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a52204 commit 20eba58Copy full SHA for 20eba58
2 files changed
.github/workflows/build.yml
@@ -79,7 +79,7 @@ jobs:
79
run: TEST_START=`date +%s` >> $GITHUB_ENV
80
81
- name: Run the tests
82
- run: bin/test | tee "${ARTIFACTS_DIR}/test.out"
+ run: bin/test
83
84
- name: Collect additional artifacts
85
if: ${{ always() }}
bin/test
@@ -1,4 +1,4 @@
1
#!/bin/bash -e
2
3
docker compose up --detach --no-build
4
-docker compose exec app rspec --format html > "${RUNNER_TEMP}/test-results.html"
+docker compose exec app rspec --format html | tee "${RUNNER_TEMP}/test-results.html" 2>&1
0 commit comments