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 3cc9338 commit f568e3eCopy full SHA for f568e3e
.github/workflows/tests-ubuntu.yml
@@ -23,5 +23,16 @@ jobs:
23
docker:
24
runs-on: ubuntu-20.04
25
steps:
26
- - run: docker-compose build
+ - uses: actions/checkout@v2
27
+ - run: docker-compose build
28
+ - run: - docker images
29
+ - run: |
30
+ docker-compose -f docker-compose.yml up -d
31
+ # docker-compose -f docker-compose.yml -f docker-compose.debug.yml up -d
32
+ docker-compose ps
33
+ # wait until the web server is up
34
+ wget --timeout 3 --tries=5 --spider localhost:8002 2>&1 | grep -i http
35
+ docker-compose logs --no-color
36
+ - run: CHEATSH_TEST_STANDALONE=NO bash tests/run-tests.sh
37
+
38
0 commit comments