diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2020-03-24 09:41:05 +0100 |
|---|---|---|
| committer | Linus Jahn <lnj@kaidan.im> | 2023-03-17 15:09:34 +0100 |
| commit | 1cf0a4aff856a1f3cab0f9750ee6b361691350a7 (patch) | |
| tree | 5ac3a823ec69db60e67608a0f3e7e6106ae7a7a4 /.github/workflows | |
| parent | 67d75d5adc5915b5fb83fc1578b35724dae6185b (diff) | |
| download | qxmpp-1cf0a4aff856a1f3cab0f9750ee6b361691350a7.tar.gz | |
[tests] run tests on Windows
Diffstat (limited to '.github/workflows')
| -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 6cccb5f7..5bd9eed0 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: |
