diff --git a/.github/workflows/serial-tests.yml b/.github/workflows/serial-tests.yml index bdfa1f97..e09518f9 100644 --- a/.github/workflows/serial-tests.yml +++ b/.github/workflows/serial-tests.yml @@ -29,4 +29,12 @@ jobs: pip install tqdm - name: Run CPU test for ${{ matrix.problem }} - run: bash test/test-serial.bash "${{ matrix.problem }}" \ No newline at end of file + run: bash test/test-serial.bash "${{ matrix.problem }}" + + all-serial-tests: + name: All Tests Summary + needs: serial-tests + runs-on: ubuntu-latest + steps: + - name: Print final message + run: echo "All tests passed" \ No newline at end of file