We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7267a45 commit f94fa5cCopy full SHA for f94fa5c
.github/workflows/ci.yml
@@ -69,6 +69,12 @@ jobs:
69
uses: codecov/codecov-action@v4
70
env:
71
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
72
+ tests-passed:
73
+ needs: ['jest', 'python-test']
74
+ runs-on: ubuntu-latest
75
+ steps:
76
+ - name: All Tests Have Passed
77
+ run: 'echo true'
78
79
python-test:
80
runs-on: ubuntu-latest
@@ -90,7 +96,7 @@ jobs:
90
96
working-directory: ./src/earthdataVarinfo
91
97
deploy:
92
98
if: success() && github.ref == 'refs/heads/main' # only run on main success
93
- needs: [jest, python-test] # only run after jest and python-test jobs complete
99
+ needs: [tests-passed] # only run after all test jobs complete
94
100
95
101
steps:
102
- name: Checkout code
0 commit comments