diff options
Diffstat (limited to '.github/workflows/CI.yml')
-rw-r--r-- | .github/workflows/CI.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 6dae66e..01e41e6 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -20,6 +20,8 @@ jobs: steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 # fetch the entire repository so that we can use it for our self tests - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v3 with: @@ -41,3 +43,6 @@ jobs: - name: Test with pytest run: | pytest + - name: Run the self-test suite + run: | + tests/self_test.sh |