We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a5fa242 commit bd38e43Copy full SHA for bd38e43
.github/workflows/ci.yml
@@ -62,7 +62,7 @@ jobs:
62
svn --version
63
64
- name: Build project and run tests (non Win)
65
- if: ${{ matrix.runs-on != 'windows-latest' }}
+ if: ${{ !contains(matrix.runs-on, 'windows') }}
66
run: |
67
./updatenC.sh # Pull other repos, e.g. NeuroML v1 examples from SourceForge
68
# make
@@ -73,7 +73,7 @@ jobs:
73
./nC.sh -v
74
75
- name: Build project and run tests (Win)
76
- if: ${{ matrix.runs-on == 'windows-latest' }}
+ if: ${{ contains(matrix.runs-on, 'windows') }}
77
78
./updatenC.bat # Pull other repos, e.g. NeuroML v1 examples from SourceForge
79
echo "Everything pulled..."
0 commit comments