Feat/long running epoch testing #15
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
name: master-trigger | ||
on: | ||
pull_request: | ||
workflow_dispatch: {} | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | ||
cancel-in-progress: true | ||
env: | ||
DATIL_COMMIT_HASH: ae3c20e07eb933b61073689b95f56867c03de252 | ||
jobs: | ||
list_changed_files_and_trigger_workflows: | ||
uses: ./.github/workflows/list-changed-files.yml | ||
secrets: inherit | ||
get_shas: | ||
uses: ./.github/workflows/get-sha.yml | ||
secrets: inherit | ||
lint: | ||
needs: [list_changed_files_and_trigger_workflows] | ||
uses: ./.github/workflows/lint.yml | ||
secrets: inherit | ||
unit_tests: | ||
uses: ./.github/workflows/unit-test.yml | ||
secrets: inherit | ||
needs: [lint, get_shas] | ||
intigration_tests: | ||
uses: ./.github/workflows/intigration-test.yml | ||
secrets: inherit | ||
needs: [lint, get_shas] | ||
with: | ||
commit: ${{env.DATIL_COMMIT_HASH}} | ||
Check failure on line 31 in .github/workflows/master-trigger.yml GitHub Actions / master-triggerInvalid workflow file
|
||
all_jobs: | ||
if: ${{ always() }} | ||
needs: [ | ||
lint, | ||
unit_tests, | ||
intigration_tests | ||
] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check status | ||
run: | | ||
echo "Linter ${{needs.lint.result}}" | ||
echo "Tests Unit ${{needs.unit_tests.result}}" | ||
echo "Tests Intigration" |