fix(actions): Explicitly include test workflow instead of using test-… #238
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Runs a build test every time a commit is pushed to branch 'develop'. | ||
# Runs a build test and merges develop into main every time a tag with pattern 'v*' is pushed. | ||
name: Test Develop | ||
on: | ||
push: | ||
branches: [ develop ] | ||
jobs: | ||
build-test: | ||
trigger-publish-docs: | ||
needs: build-test | ||
if: success() | ||
uses: ./.github/workflows/publish-docs.yml |