Skip to content

Commit 2e9f1fa

Browse files
committed
Make docs, container workflows need test workflow
1 parent d13e5ce commit 2e9f1fa

File tree

2 files changed

+3
-3
lines changed
  • .github/workflows
  • template/{% if git_platform=="github.com" %}.github{% endif %}/workflows

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
2727

2828
docs:
29-
needs: check
29+
needs: [check, test]
3030
if: needs.check.outputs.branch-pr == ''
3131
uses: ./.github/workflows/_docs.yml
3232
permissions:

template/{% if git_platform=="github.com" %}.github{% endif %}/workflows/ci.yml.jinja

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,15 @@ jobs:
3535
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
3636
{% endraw %}{% if docker %}
3737
container:
38-
needs: check
38+
needs: [check, test]
3939
if: needs.check.outputs.branch-pr == ''
4040
uses: ./.github/workflows/_container.yml
4141
permissions:
4242
contents: read
4343
packages: write
4444
{% endif %}{% if sphinx %}
4545
docs:
46-
needs: check
46+
needs: [check, test]
4747
if: needs.check.outputs.branch-pr == ''
4848
uses: ./.github/workflows/_docs.yml
4949
{% endif %}

0 commit comments

Comments
 (0)