Skip to content

Feat/long running epoch testing #10

Feat/long running epoch testing

Feat/long running epoch testing #10

name: master-trigger
on:
pull_request:
workflow_dispatch: {}
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
list_changed_files_and_trigger_workflows:
uses: ./.github/workflows/list-changed-files.yml
secrets: inherit
lint:
uses: ./.github/workflows/lint.yml
secrets: inherit
tests:
uses: ./.github/workflows/ci.yml
secrets: inherit
needs: [lint]
all_jobs:
if: ${{ always() }}
needs: [
lint,
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"