Skip to content

Commit 814a14f

Browse files
committed
Move actions to env (for windows compatibility)
1 parent d4add47 commit 814a14f

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/pythonapp.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
matrix:
1818
os: [ubuntu-latest, windows-latest]
1919
python: [3.6, 3.7]
20+
env:
21+
ACTIONS: 1
2022
steps:
2123
- uses: actions/checkout@v1
2224
- name: Set up Python
@@ -29,5 +31,5 @@ jobs:
2931
pip install -r requirements.txt
3032
- name: Run tests
3133
run: |
32-
ACTIONS=1 python setup.py test
34+
python setup.py test
3335

0 commit comments

Comments
 (0)