diff options
author | Adam Spiers <git@adamspiers.org> | 2023-09-22 12:24:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-22 12:24:22 +0100 |
commit | 669a4cbf3580d6300a32391a634c3d10b4e3432a (patch) | |
tree | 430fd5fc1a2cab3a3b9165b97089e6328f2d5236 /.github/workflows | |
parent | caba2b50a9cbb4cc9c6d470e1835088ba49fac17 (diff) | |
parent | b268b72533c805be8da82c728d3c8e9f6249cf23 (diff) | |
download | git-deps-669a4cbf3580d6300a32391a634c3d10b4e3432a.tar.gz |
Merge pull request #124 from wetneb/self_test_suite
Diffstat (limited to '.github/workflows')
-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 |