We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d88fec1 + 0901626 commit 80f41c5Copy full SHA for 80f41c5
.github/workflows/unit_tests.yml
@@ -14,8 +14,11 @@ jobs:
14
- name: Checkout code
15
uses: actions/checkout@v2
16
17
- - name: Build Custom Docker image
+ - name: Build Python Custom Docker image
18
run: docker build -t python3 -f ${{ github.workspace }}/dockerfiles/python3.Dockerfile .
19
+
20
+ - name: Run unit tests
21
+ run: jest
22
23
# - name: Build Custom Docker image
24
# run: docker build -t test_env .
run_tests.sh
@@ -1,2 +1,2 @@
1
#!/bin/sh
2
-docker build -t python3 -f /src/dockerfiles/python3.Dockerfile . && jest
+jest
0 commit comments