From 7abfc66f8c05176c192e1359a017b6e6bd55a9fc Mon Sep 17 00:00:00 2001
From: Oliver Hamlet <git@ortham.net>
Date: Wed, 15 Jan 2025 19:01:06 +0000
Subject: [PATCH] Run tests in parallel in CI

---
 .github/workflows/ci.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index b4e5ba41..1d0715c3 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -83,7 +83,7 @@ jobs:
           cmake --build build
 
       - name: Run tests
-        run: ctest --test-dir build --output-on-failure
+        run: ctest --test-dir build --output-on-failure --parallel
 
       - uses: actions/setup-python@v5
         with:
@@ -192,7 +192,7 @@ jobs:
           cmake --build build --config ${{ env.MSVC_CONFIG }}
 
       - name: Run tests
-        run: ctest --test-dir build --build-config ${{ env.MSVC_CONFIG }} --output-on-failure
+        run: ctest --test-dir build --build-config ${{ env.MSVC_CONFIG }} --output-on-failure --parallel
 
       - uses: actions/setup-python@v5
         with: