From 421ff56a40c25631da27156137016562b0f99712 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Thu, 5 Mar 2026 16:58:03 -0600 Subject: [PATCH] fix(ci): set max-cases to 3 to match VM core count --- .forgejo/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/build.yaml b/.forgejo/workflows/build.yaml index bc60e9f7..e552aec3 100644 --- a/.forgejo/workflows/build.yaml +++ b/.forgejo/workflows/build.yaml @@ -69,7 +69,7 @@ jobs: - name: Compile and test run: | mix compile --warnings-as-errors - mix test --warnings-as-errors --max-cases 24 + mix test --warnings-as-errors --max-cases 3 build: runs-on: ubuntu-22.04