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 3fe5713 commit fc30a21Copy full SHA for fc30a21
.github/workflows/tests.yml
@@ -11,4 +11,4 @@ jobs:
11
steps:
12
- uses: actions/checkout@v2
13
- name: Build and run tests in Docker
14
- run: env USE_DOCKER=1 ./debug-build-and-test.sh
+ run: env USE_DOCKER=1 ./build-and-test.sh
debug-build-and-test.sh renamed to build-and-test.sh
@@ -5,7 +5,7 @@ cd "$(dirname "${0}")"
5
6
if [ -n "${USE_DOCKER:-}" ]; then
7
docker build -f Dockerfile.test -t postgres-protobuf-test .
8
- docker run postgres-protobuf-test env __IN_DOCKER=1 /app/debug-build-and-test.sh
+ docker run postgres-protobuf-test env __IN_DOCKER=1 /app/build-and-test.sh
9
exit $?
10
fi
0 commit comments