From b268b72533c805be8da82c728d3c8e9f6249cf23 Mon Sep 17 00:00:00 2001 From: Antonin Delpeuch Date: Wed, 20 Sep 2023 10:20:20 +0200 Subject: Start test suite of running git-deps on itself For #4. --- .github/workflows/CI.yml | 5 +++++ 1 file changed, 5 insertions(+) (limited to '.github') 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 -- cgit