File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 70
70
python-version : ${{ matrix.python-version }}
71
71
72
72
- name : Setup Environment variables
73
- if : ${{ matrix.os == 'ubuntu-latest' }} || ${{ matrix.os == 'macos-latest' }}
73
+ if : ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' }}
74
74
run : |
75
75
if [ "macos-latest" == "${{ matrix.os }}" ]; then echo "TRAVIS_OS_NAME=osx" >> $GITHUB_ENV; else echo "TRAVIS_OS_NAME=${{ matrix.os }}" >> $GITHUB_ENV; fi
76
76
if [ "schedule" == "${{ github.event_name }}" ]; then echo "TRAVIS_EVENT_TYPE=cron" >> $GITHUB_ENV; else echo "TRAVIS_EVENT_TYPE=${{ github.event_name }}" >> $GITHUB_ENV; fi
79
79
echo "TEST_DEPENDS=$(echo $NP_TEST_DEP)" >> $GITHUB_ENV;
80
80
81
81
- name : before install
82
- if : ${{ matrix.os == 'ubuntu-latest' }} || ${{ matrix.os == 'macos-latest' }}
82
+ if : ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' }}
83
83
run : |
84
84
set -e
85
85
if [[ $SDIST == 0 ]]; then
You can’t perform that action at this time.
0 commit comments