We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a038e47 commit 4c5bad2Copy full SHA for 4c5bad2
2 files changed
.appveyor.yml
.github/workflows/test.yml
@@ -90,3 +90,23 @@ jobs:
90
run: sudo chmod -R +x ./.github/workflows/test/*.sh
91
- name: Build
92
run: ./.github/workflows/test/script_desktop.sh
93
+
94
+ windows:
95
+ runs-on: windows-2016
96
+ strategy:
97
+ matrix:
98
+ build: [Debug, Release]
99
100
+ steps:
101
+ - uses: actions/checkout@v1
102
+ - name: Setup MSBuild.exe
103
+ uses: warrenbuckley/Setup-MSBuild@v1
104
+ - name: Install
105
+ run: git submodule update --init --recursive
106
+ - name: CMake
107
+ run: cmake -G "Visual Studio 15 2017 Win64" .
108
+ - name: Build Solution
109
+ shell: cmd
110
+ run: msbuild "%GITHUB_WORKSPACE%\Ark-Cpp-Crypto.sln"
111
+ - name: Test
112
+ run: call "%GITHUB_WORKSPACE%\test\Debug\Ark-Cpp-Crypto-tests"
0 commit comments