From 52ab40a3d6cb71aefe0e16464f53347cd39f7bc2 Mon Sep 17 00:00:00 2001 From: Sean Young Date: Mon, 22 Apr 2024 13:21:32 +0100 Subject: [PATCH] Do not test on Windows Testing on Windows is not going to work. The lirc daemon C will need a lot of work to compile on Windows, and IrpTransmogrifier does not build on Windows either (although that might be trival to fix). Signed-off-by: Sean Young --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0d16b77..7cd55e8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -7,7 +7,7 @@ jobs: strategy: fail-fast: false matrix: - os: [macos-latest, ubuntu-latest, windows-latest] + os: [macos-latest, ubuntu-latest] steps: - name: Checkout sources uses: actions/checkout@v4