Skip to content

Feat/long running epoch testing #15

Feat/long running epoch testing

Feat/long running epoch testing #15

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

View workflow run for this annotation

GitHub Actions / master-trigger

Invalid workflow file

The workflow is not valid. .github/workflows/master-trigger.yml (Line: 31, Col: 17): Unrecognized named-value: 'env'. Located at position 1 within expression: env.DATIL_COMMIT_HASH
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"