-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (28 loc) · 1012 Bytes
/
basic_test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Basic test (build and run)
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Build Docker image
run: docker build -t wis2box-webapp ./webapp/
- name: Start Docker Compose services
run: docker-compose -f test/docker-compose.yml up -d
- name: Wait for service to start
run: sleep 30
- name: Check status code
run: |
curl -s -o /dev/null -w "%{http_code}" http://localhost:8080/wis2box-webapp
status_code=$(curl -s -o /dev/null -w "%{http_code}" http://localhost:8080/wis2box-webapp)
if [[ $status_code -ne 200 ]]; then
echo "Request failed with status code:"
echo ${status_code}
exit 1
fi
- name: failed tests 🚩
if: ${{ failure() }}
run: |
echo "check docker logs"
docker-compose -f test/docker-compose.yml logs