We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ef8c33 commit 0ef9c77Copy full SHA for 0ef9c77
.github/workflows/tests.yml
@@ -33,7 +33,7 @@ jobs:
33
TEST_MYSQL_PASS: testbench
34
TEST_MYSQL_PORT: ${{ job.services.mysql.ports['3306'] }}
35
- name: move coverage
36
- run: tree $(pwd)/coverage && mv $(pwd)/coverage/tests.sh/cov.xml $(pwd)/cov.xml
+ run: ls -lahR ./ && mv ./coverage/tests.sh/cov.xml ./cov.xml
37
- name: Send coverage
38
uses: codecov/codecov-action@v1
39
with:
postTest.sh
@@ -1,3 +1,3 @@
1
-#!/bin/bash
+#!/bin/sh
2
3
echo "$(date --utc --rfc-2822)" > "$(dirname $0)/test/endfile"
run-tests.sh
@@ -1,5 +1,7 @@
#!/bin/sh
+set -e
4
+
5
apk add --update --no-cache mysql-client
6
7
./tests.sh
0 commit comments