We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8c3349 commit adca6c6Copy full SHA for adca6c6
.github/workflows/python-app.yml
@@ -13,12 +13,15 @@ jobs:
13
uses: actions/setup-python@v5
14
with:
15
python-version: "3.11.8"
16
+ - name: Set PYTHONPATH
17
+ run: echo "PYTHONPATH=$PWD" >> $GITHUB_ENV
18
- name: Set up
19
run: |
20
mkdir test
21
echo "print('OK')" > test/a.py
22
mkdir test1
23
echo "print('OK')" > test1/a.py
- - name: Run script
- working-directory: ./test
24
- run: python -m a
+ - name: Run OK
25
+ run: python -m test1.a
26
+ - name: Run Fail
27
+ run: python -m test.a
0 commit comments