diff options
Diffstat (limited to '.github/workflows/tests.yml')
| -rw-r--r-- | .github/workflows/tests.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fb81a3ee..da4ba743 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -49,6 +49,18 @@ jobs: - uses: codecov/codecov-action@v1 with: token: ${{ secrets.CODECOV_TOKEN }} + windows: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - name: Install Qt + uses: jurplel/install-qt-action@v2 + - name: Run tests + run: | + ${env:PATH} += ";D:/a/qxmpp/qxmpp/src/Debug" + cmake . && cmake --build . + # ctest + # ctest --rerun-failed --output-on-failure xmllint: runs-on: ubuntu-latest steps: |
