diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 9758a7e3..d178f5de 100755 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -11,6 +11,8 @@ jobs: matrix: os: [macos-latest, ubuntu-latest] config: [ optimized=1, TSAN=1, ASAN=1] + include: + - os: windows-latest steps: - name: Checkout code @@ -30,6 +32,13 @@ jobs: cd src make ${{ matrix.config }} -f Makefile.vdf-client + - name: Build vdf-client on Windows + if: startsWith(matrix.os, 'windows') + run: | + choco install boost-msvc-14.2 + cd src + make ${{ matrix.config }} -f Makefile.vdf-client + - name: Test vdf-client if: matrix.config == 'optimized=1' run: |