This commit is contained in:
parent
c75f55c050
commit
d2cdfc4fef
@ -17,3 +17,11 @@ jobs:
|
|||||||
- name: Deploy testing environment
|
- name: Deploy testing environment
|
||||||
shell: sh
|
shell: sh
|
||||||
run: docker-compose -f backend/docker-compose-x86_64.yaml up -d
|
run: docker-compose -f backend/docker-compose-x86_64.yaml up -d
|
||||||
|
- name: Run test requests
|
||||||
|
shell: sh
|
||||||
|
run: |
|
||||||
|
chmod +x tests/backend.sh
|
||||||
|
tests/backend.sh
|
||||||
|
- name: Clean up testing environment
|
||||||
|
shell: sh
|
||||||
|
run: docker-compose -f backend/docker-compose-x86_64.yaml up -d
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
|
|
||||||
RUN apk --update add git docker docker-compose postgresql
|
RUN --mount=type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock apk --update add git docker docker-compose postgresql
|
||||||
RUN docker pull postgres
|
RUN --mount=type=bind,source=/var/run/docker.sock,target=/var/run/docker.sock docker pull postgres
|
||||||
|
Loading…
x
Reference in New Issue
Block a user