We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add to a GitHub Actions YAML file (assuming a Windows runner)
jobs: build: steps: - name: Test shell: cmd working-directory: ${{ github.workspace }} run: ctest --preset=${{ matrix.build_type }} %CTEST_DEBUG_OPTS% env: CTEST_DEBUG_OPTS: ${{ runner.debug == '1' && '--output-on-failure' || '' }}
The VS Code Extensions flags it as a warning:
"Context access might be invalid"
Per this PR, this was previously undocumented but is supported:
github/docs#19404
Note that runner.debug doesn't work at global scope or at job scope, only at steps.
runner.debug
The text was updated successfully, but these errors were encountered:
Already reported in the actions/languageservices repo:
actions/languageservices
runner.environment
Sorry, something went wrong.
No branches or pull requests
Add to a GitHub Actions YAML file (assuming a Windows runner)
The VS Code Extensions flags it as a warning:
"Context access might be invalid"
Per this PR, this was previously undocumented but is supported:
github/docs#19404
Note that
runner.debug
doesn't work at global scope or at job scope, only at steps.The text was updated successfully, but these errors were encountered: