We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66c0f04 commit 15a5c7dCopy full SHA for 15a5c7d
.github/workflows/tests.yml
@@ -31,9 +31,9 @@ jobs:
31
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'
+ run: |
+ echo 'GYP_MSVS_VERSION=2015' >> $Env:GITHUB_ENV
+ echo 'GYP_MSVS_OVERRIDE_PATH=C:\\Dummy' >> $Env:GITHUB_ENV
37
- name: Lint Python
38
if: matrix.os == 'ubuntu-latest'
39
run: |
0 commit comments