Skip to content

fix: checking docker before post test #3497

fix: checking docker before post test

fix: checking docker before post test #3497

Workflow file for this run

name: "Workflow Dispatch"
on: push
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
call-lint:
name: "Lint"
uses: ./.github/workflows/lint.yml
secrets: inherit
call-build:
name: "Build"
uses: ./.github/workflows/build.yml
secrets: inherit
call-test:
name: "Tests"
needs: [ call-lint, call-build ]
uses: ./.github/workflows/test.yml

Check failure on line 23 in .github/workflows/dispatch.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dispatch.yml

Invalid workflow file

error parsing called workflow ".github/workflows/dispatch.yml" -> "./.github/workflows/test.yml" (source branch with sha:ceeef2135b385e73982c73923b96facc4b7f5aa1) : You have an error in your yaml syntax on line 171
secrets: inherit
call-release:
name: "Release"
needs: call-test
if: ${{ github.ref_protected == true }}
uses: ./.github/workflows/release.yml
secrets: inherit