summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2023-08-17 16:37:52 +0200
committertoonn <toonn@toonn.io>2023-08-17 16:37:52 +0200
commitcf1e81ac674488b3059967c69b5710edd5d7e58a (patch)
tree1476948499e582ef8a3ae1abb87e84610b9683a3
parent6ad8c7e17f74a8741afb27232fd9a51886274d41 (diff)
GHActions: Run all Python tests on PRs too
-rw-r--r--.github/workflows/pr.yml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml
index 67ae4368..c09fff20 100644
--- a/.github/workflows/pr.yml
+++ b/.github/workflows/pr.yml
@@ -40,7 +40,15 @@ jobs:
flake8 ${{ steps.paths-filter.outputs.config }}
pylint --rcfile=ranger/config/.pylintrc \
${{ steps.paths-filter.outputs.config_files }}
+ - name: Run doctest
+ if: ${{ steps.path-filter.outputs.code == 'true' }}
+ run: |
+ make test_doctest
- name: Test code with Pytest
if: ${{ steps.path-filter.outputs.code == 'true' }}
run: |
make test_pytest
+ - name: Check man page completeness
+ if: ${{ steps.path-filter.outputs.code == 'true' }}
+ run: |
+ make test_other