Skip to content

Renamed a variable

Renamed a variable #9

name: TestAndBuild
on:
push:
branches: [ workflow-and-tests ]
workflow_dispatch:
jobs:
call-test-workflow:
uses: ./.github/workflows/test.yml
if: ${{ inputs.run-tests }}
with:
module_root: ./modules/core
run-tests: true

Check failure on line 14 in .github/workflows/test-and-release.yml

View workflow run for this annotation

GitHub Actions / TestAndBuild

Invalid workflow file

The workflow is not valid. .github/workflows/test-and-release.yml (Line: 14, Col: 18): Invalid input, run-tests is not defined in the referenced workflow.
secrets: inherit
call-release-workflow:
uses: ./.github/workflows/release.yml
needs: call-test-workflow
if: ${{ inputs.release }}
with:
release: false
secrets: inherit