Skip to content

Commit be56bb5

Browse files
committed
added unittests
1 parent a826cca commit be56bb5

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/M1-4-2-CI-Practice.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,23 @@ jobs:
6666
- name: Run Markdownlint
6767
run: markdownlint **/*.md
6868

69+
unittests:
70+
name: Unit Tests
71+
runs-on: ubuntu-latest
72+
needs: gitleaks-scan
73+
steps:
74+
- name: Checkout repo
75+
uses: actions/checkout@v4
76+
77+
- name: Set up Python
78+
uses: actions/setup-python@v4
79+
with:
80+
python-version: '3.x'
81+
82+
- name: Install dependencies
83+
run: |
84+
python -m pip install --upgrade pip
85+
pip install -r requirements.txt
86+
87+
- name: Run unit tests
88+
run: python -m unittest discover

0 commit comments

Comments
 (0)