From fa7423afc5d4db664248636a2eb0649a45e8f542 Mon Sep 17 00:00:00 2001 From: Jinzhe Zeng Date: Tue, 29 Nov 2022 18:44:33 -0500 Subject: [PATCH] add pass step to GitHub Actions Same as https://github.com/deepmodeling/deepmd-kit/pull/2141 --- .github/workflows/test.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1f8caf806..e19f85d43 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,3 +27,8 @@ jobs: run: cd tests && coverage run --source=../dpdata -m unittest && cd .. && coverage combine tests/.coverage && coverage report - name: Run codecov uses: codecov/codecov-action@v3 + pass: + needs: [build] + runs-on: ubuntu-latest + steps: + - run: echo "All jobs passed"