Skip to content

Commit 8539729

Browse files
Update python-app.yml
1 parent adca6c6 commit 8539729

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

.github/workflows/python-app.yml

+4-8
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
name: Reproduce Issue
2-
3-
on:
4-
push:
5-
branches: [ issue-874 ]
1+
name: Bug
62

3+
on: push
74
jobs:
85
reproduce:
96
runs-on: ubuntu-latest
@@ -13,8 +10,6 @@ jobs:
1310
uses: actions/setup-python@v5
1411
with:
1512
python-version: "3.11.8"
16-
- name: Set PYTHONPATH
17-
run: echo "PYTHONPATH=$PWD" >> $GITHUB_ENV
1813
- name: Set up
1914
run: |
2015
mkdir test
@@ -24,4 +19,5 @@ jobs:
2419
- name: Run OK
2520
run: python -m test1.a
2621
- name: Run Fail
27-
run: python -m test.a
22+
run: |
23+
python -c "from test import a"

0 commit comments

Comments
 (0)