Update python-app.yml #599
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Non-Existent Path | |
on: [push] | |
jobs: | |
build: | |
runs-on: self-hosted | |
steps: | |
- name: Add Non-Existent Path to PATH | |
run: | | |
echo "Adding non-existent path to PATH" | |
echo "D:\Program Files\Perforce" >> $GITHUB_PATH | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.10' | |
- name: Verify PATH | |
run: echo $PATH |