From 40105d5d82079c89940f170e9081cce2d0014c8b Mon Sep 17 00:00:00 2001 From: Martin Frost Date: Sat, 8 Apr 2023 23:49:51 +0200 Subject: [PATCH] Disable windows builds I honestly don't know if these ever worked, and now they seem to not be creating any output on CI, so let's skip them for now. --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 383ed4a..395df04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,10 @@ jobs: name: Build package strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + os: + - ubuntu-latest + - macos-latest + # - windows-latest runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3