Skip to content

Commit

Permalink
chore: Add make test to the CI
Browse files Browse the repository at this point in the history
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).
  • Loading branch information
Antiz96 committed Sep 25, 2024
1 parent 1b76e1c commit 8160cfc
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ jobs:

- name: Run pylint
run: find . -name '*.py' -exec pylint -d E0611,E0401,C0103 --output-format=colorized {} +

- name: Run make test
run: make test

0 comments on commit 8160cfc

Please sign in to comment.