Skip to content

Commit 2fefbc4

Browse files
committed
updated workflow
1 parent 75a9a89 commit 2fefbc4

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/unit_tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,5 @@ jobs:
1818
run: docker build -t test_env .
1919

2020
- name: Run unit tests inside the custom docker container
21-
run: docker run test_env
21+
run: docker run -dit -v "/var/run/docker.sock:/var/run/docker.sock:rw" test_env
22+
# run: docker run test_env

run_tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/sh
2-
systemctl restart docker
2+
docker build -t python3 -f /src/dockerfiles/python3.Dockerfile .
33
jest

0 commit comments

Comments
 (0)