Skip to content

Commit 0901626

Browse files
committed
workflow
1 parent ca89377 commit 0901626

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/unit_tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,11 @@ jobs:
1414
- name: Checkout code
1515
uses: actions/checkout@v2
1616

17-
- name: Build Custom Docker image
17+
- name: Build Python Custom Docker image
1818
run: docker build -t python3 -f ${{ github.workspace }}/dockerfiles/python3.Dockerfile .
19+
20+
- name: Run unit tests
21+
run: jest
1922

2023
# - name: Build Custom Docker image
2124
# run: docker build -t test_env .

run_tests.sh

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

0 commit comments

Comments
 (0)