Skip to content

Commit 7d43e0a

Browse files
authoredSep 25, 2024
chore: Add make test to the CI (#246)
Add a `make test` stage to the CI GitHub action so `make test` is executed on pull request (to ensure the changes made are not breaking units tests).
1 parent 1b76e1c commit 7d43e0a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed
 

‎.github/workflows/CI.yml

+3
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ jobs:
2525

2626
- name: Run pylint
2727
run: find . -name '*.py' -exec pylint -d E0611,E0401,C0103 --output-format=colorized {} +
28+
29+
- name: Run make test
30+
run: make test

0 commit comments

Comments
 (0)
Please sign in to comment.