From 178171c34210b0593aacfa1ff583961962159781 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Wed, 10 Jan 2024 15:33:32 +0200 Subject: [PATCH] Run slowest jobs first to speed up build --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index b190ae6..8b8c00a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -15,8 +15,8 @@ jobs: name: tests strategy: matrix: - os: [ubuntu-latest, macos-latest, windows-latest] - python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy-3.9'] + os: [windows-latest, macos-latest, ubuntu-latest] + python: ['pypy-3.9', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] exclude: # pypy3 currently fails to run on Windows - os: windows-latest