Skip to content

Commit 392e47f

Browse files
committed
Revert set-env action
1 parent 354c569 commit 392e47f

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,10 @@ jobs:
2929
run: |
3030
npm install --no-progress
3131
pip install flake8 pytest
32-
- name: Set Windows environment
33-
if: matrix.os == 'windows-latest'
34-
run:
35-
echo ::set-env name=GYP_MSVS_VERSION::2015
36-
echo ::set-env name=GYP_MSVS_OVERRIDE_PATH::C:\\Dummy
3732
- name: Run Node tests
33+
env:
34+
GYP_MSVS_VERSION: 2015
35+
GYP_MSVS_OVERRIDE_PATH: C:\\Dummy
3836
run: |
3937
npm test
4038
- name: Lint Python
@@ -45,6 +43,9 @@ jobs:
4543
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
4644
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
4745
- name: Run Python tests
46+
env:
47+
GYP_MSVS_VERSION: 2015
48+
GYP_MSVS_OVERRIDE_PATH: C:\\Dummy
4849
run: |
4950
python -m pytest
5051
# - name: Run doctests with pytest

0 commit comments

Comments
 (0)