From 7317f7de950f45ccfd2855a665e0639b37c6e513 Mon Sep 17 00:00:00 2001 From: Damien Baty Date: Thu, 16 Nov 2023 00:14:11 +0100 Subject: [PATCH 1/2] ci: Run tests on Windows in GitHub Action --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68a69acd6..b4d68f920 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,10 +10,11 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: [ubuntu-latest, windows-latest] strategy: matrix: + os: [ubuntu-latest, windows-latest] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] services: From 843113c7ca65b7efd46ea89f62298ae6ee6c1de2 Mon Sep 17 00:00:00 2001 From: Damien Baty Date: Thu, 16 Nov 2023 00:19:44 +0100 Subject: [PATCH 2/2] ___ wip: smaller matrix, faster runs (and failures) --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b4d68f920..42582e4fa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,12 +10,16 @@ on: jobs: build: - runs-on: [ubuntu-latest, windows-latest] + #runs-on: [ubuntu-latest, windows-latest] + runs-on: [windows-latest] strategy: matrix: - os: [ubuntu-latest, windows-latest] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + # FIXME: DEBUG ONLY: minimize matrix while we test + #os: [ubuntu-latest, windows-latest] + os: [windows-latest] + #python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.11"] services: postgres: